diff --git a/README.md b/README.md
index 03371504..56df93f1 100644
--- a/README.md
+++ b/README.md
@@ -196,6 +196,14 @@ $ manage.py test tests.test_additional_data_tsgorgtype
_see `manage.py test --help` for more info_
+### Updating the test data fixture
+
+Note that the OrgInfoCache entries for the test funders/recipients also needs to be included in the test data fixture.
+
+```shell
+./manage.py dumpdata --output db/fixtures/test_data.json db additional_data.OrgInfoCache
+```
+
# Updating requirements
We target python3.12 for our requirements.
diff --git a/datastore/api/dashboard/api.py b/datastore/api/dashboard/api.py
index e9fef6ac..cee489be 100644
--- a/datastore/api/dashboard/api.py
+++ b/datastore/api/dashboard/api.py
@@ -47,7 +47,7 @@ class Publishers(generics.ListAPIView):
]
def get_queryset(self):
- return db.Publisher.objects.filter(getter_run=db.GetterRun.latest())
+ return db.Publisher.objects.all()
class Publisher(generics.RetrieveAPIView):
@@ -56,7 +56,7 @@ class Publisher(generics.RetrieveAPIView):
serializer_class = serializers.PublisherSerializer
def get_queryset(self):
- return db.Publisher.objects.filter(getter_run=db.GetterRun.latest())
+ return db.Publisher.objects.all()
class Sources(generics.ListAPIView):
diff --git a/datastore/api/org/api.py b/datastore/api/org/api.py
index aed7bbfb..eb02f9bb 100644
--- a/datastore/api/org/api.py
+++ b/datastore/api/org/api.py
@@ -25,7 +25,6 @@ def get_queryset(self):
return (
# Empty order_by to cancel default sort
db.Publisher.objects.order_by()
- .filter(getter_run__in=db.GetterRun.objects.in_use())
.values(*fields)
.union(db.Funder.objects.all().values(*fields))
.union(db.Recipient.objects.all().values(*fields))
@@ -77,9 +76,7 @@ def get_object(self):
recipient_queryset = self.filter_queryset(db.Recipient.objects.all())
publisher_queryset = self.filter_queryset(
# Empty order_by to cancel default sort
- db.Publisher.objects.order_by().filter(
- getter_run__in=db.GetterRun.objects.in_use()
- )
+ db.Publisher.objects.order_by().all()
)
try:
diff --git a/datastore/api/org/models.py b/datastore/api/org/models.py
index 1631aec9..fe48a609 100644
--- a/datastore/api/org/models.py
+++ b/datastore/api/org/models.py
@@ -5,6 +5,7 @@
from django.db.models.query import QuerySet, Q
import db.models as db
+from db.models import Publisher
@dataclass
@@ -62,9 +63,7 @@ def exists(
if publisher_queryset is None:
# Empty order_by to cancel default sort
- publisher_queryset = db.Publisher.objects.order_by().filter(
- getter_run__in=db.GetterRun.objects.in_use()
- )
+ publisher_queryset = db.Publisher.objects.order_by()
id_query = Q(org_id=org_id) | Q(non_primary_org_ids__contains=[org_id])
@@ -102,9 +101,7 @@ def get(
if publisher_queryset is None:
# Empty order_by to cancel default sort
- publisher_queryset = db.Publisher.objects.order_by().filter(
- getter_run__in=db.GetterRun.objects.in_use()
- )
+ publisher_queryset = db.Publisher.objects.order_by().all()
name = None
primary_org_id = org_id
@@ -150,13 +147,13 @@ def get(
# is org a Publisher?
try:
- publisher = publisher_queryset.filter(org_id=org_id).order_by(
- "-getter_run__datetime"
- )[0]
+ publisher = Publisher.get_most_recent(
+ org_id=org_id, queryset=publisher_queryset
+ )
name = publisher.name
# Publishers take precedence over Funders / Recipients when it comes to primary vs non-primary ID priority
primary_org_id = publisher.org_id
- except IndexError:
+ except Publisher.DoesNotExist:
publisher = None
if funder is None and recipient is None and publisher is None:
diff --git a/datastore/data_quality/management/commands/rewrite_quality_data.py b/datastore/data_quality/management/commands/rewrite_quality_data.py
index 266d4c48..916d4285 100644
--- a/datastore/data_quality/management/commands/rewrite_quality_data.py
+++ b/datastore/data_quality/management/commands/rewrite_quality_data.py
@@ -1,3 +1,4 @@
+from typing import Optional, Literal
from django.core.management.base import BaseCommand
from django.core.cache import cache
from django.db import connection
@@ -54,41 +55,63 @@ def add_arguments(self, parser):
"--threads",
type=int,
default=8,
- help="Number of threads to use for processing quality data",
+ help="Number of threads to use for processing quality data. Set to 0 to disable threading.",
)
def handle(self, *args, **options):
- if "latest" in options["getter_run"]:
- source_files = db.Latest.objects.get(
- series=db.Latest.CURRENT
- ).sourcefile_set.all()
- else:
- source_files = db.SourceFile.objects.filter(
- getter_run=options["getter_run"]
- )
+ getter_run: str = options["getter_run"]
+ publisher_only: bool = options["publisher_only"]
+ sourcefile_only: bool = options["sourcefile_only"]
+ publisher_prefix: str | None = options.get("publisher")
+ threads: int = options["threads"]
+
+ rewrite_quality_data(
+ getter_run=getter_run,
+ publisher_only=publisher_only,
+ sourcefile_only=sourcefile_only,
+ publisher_prefix=publisher_prefix,
+ threads=threads,
+ )
- if options.get("publisher"):
- source_files = source_files.filter(
- data__publisher__prefix=options["publisher"]
- )
- publisher_objs_for_update = []
- sourcefile_objs_for_update = []
-
- if not options["publisher_only"]:
- print("Processing sourcefile data")
- process_sf_list = []
- for source_file in source_files:
- process_sf_list.append(
- {
- "pk": source_file.pk,
- "grants": list(
- source_file.grant_set.values_list("data", flat=True)
- ),
- }
- )
+def rewrite_quality_data(
+ getter_run: str | Literal["latest"] = "latest",
+ publisher_only: bool = False,
+ sourcefile_only: bool = False,
+ publisher_prefix: Optional[str] = None,
+ threads: int = 0,
+):
+ if getter_run == "latest":
+ source_files = db.Latest.objects.get(
+ series=db.Latest.CURRENT
+ ).sourcefile_set.all()
+ else:
+ source_files = db.SourceFile.objects.filter(getter_run=getter_run)
+
+ if publisher_prefix:
+ source_files = source_files.filter(data__publisher__prefix=publisher_prefix)
+
+ publisher_objs_for_update = []
+ sourcefile_objs_for_update = []
+
+ if not publisher_only:
+ print("Processing sourcefile quality data")
+ process_sf_list = []
+ for source_file in source_files:
+ process_sf_list.append(
+ {
+ "pk": source_file.pk,
+ "grants": list(
+ source_file.grant_set.values_list("data", flat=True)
+ ),
+ }
+ )
- with Pool(options.get("threads")) as process_pool:
+ if not threads:
+ for sf_ in process_sf_list:
+ process_source_file(sf_)
+ else:
+ with Pool(threads) as process_pool:
try:
source_file_results = process_pool.map(
process_source_file, process_sf_list
@@ -96,55 +119,55 @@ def handle(self, *args, **options):
except Exception as e:
print(f"Error generating quality data {e}")
- for source_file_result in source_file_results:
- if source_file_result == None:
- continue
+ for source_file_result in source_file_results:
+ if source_file_result is None:
+ continue
- sf = db.SourceFile.objects.get(pk=source_file_result["pk"])
- sf.quality = source_file_result["quality"]
- sf.aggregate = source_file_result["aggregate"]
- sourcefile_objs_for_update.append(sf)
-
- db.SourceFile.objects.bulk_update(
- sourcefile_objs_for_update, ["quality", "aggregate"], batch_size=10000
- )
+ sf = db.SourceFile.objects.get(pk=source_file_result["pk"])
+ sf.quality = source_file_result["quality"]
+ sf.aggregate = source_file_result["aggregate"]
+ sourcefile_objs_for_update.append(sf)
- def process_publishers(source_file):
- """Updates the publisher data with aggregates and quality data relating to their source files"""
-
- # We want to store the quality and aggregate data against the latest version of the publisher
- # object rather than the version from the getter_run that this source file came from
- # This is so that when we serialise the latest publishers we get the latest aggregate and
- # quality data regardless of when the source file entered the system.
- publisher = db.Publisher.objects.get(
- getter_run=db.GetterRun.latest(),
- prefix=source_file.data["publisher"]["prefix"],
- )
+ db.SourceFile.objects.bulk_update(
+ sourcefile_objs_for_update, ["quality", "aggregate"], batch_size=10000
+ )
- print(publisher)
-
- try:
- (
- publisher.quality,
- publisher.aggregate,
- ) = quality_data.create_publisher_stats(publisher)
- publisher_objs_for_update.append(publisher)
- except Exception as e:
- print("Could not create publisher quality data for %s" % str(publisher))
- print(e)
- connection.close()
-
- if not options["sourcefile_only"]:
- print("Processing publisher data")
- with dummy.Pool(4) as process_pool:
+ def process_publishers(source_file_: db.SourceFile):
+ """Updates the publisher data with aggregates and quality data relating to their source files"""
+ publisher = db.Publisher.objects.get(
+ prefix=source_file_.data["publisher"]["prefix"]
+ )
+ print(f"Processing Publisher Quality for {publisher.prefix}")
+
+ try:
+ (
+ publisher.quality,
+ publisher.aggregate,
+ ) = quality_data.create_publisher_stats(publisher)
+ publisher_objs_for_update.append(publisher)
+ except Exception as e:
+ print("Could not create publisher quality data for %s" % str(publisher))
+ print(e)
+ if threads > 0:
+ connection.close() # ????
+
+ if not sourcefile_only:
+ print(
+ f"Processing publisher quality data ({source_files.distinct('data__publisher__prefix').count()})"
+ )
+ if not threads:
+ for sf_ in source_files.distinct("data__publisher__prefix"):
+ process_publishers(sf_)
+ else:
+ with dummy.Pool(threads) as process_pool:
process_pool.starmap(
process_publishers,
zip(source_files.distinct("data__publisher__prefix")),
)
- db.Publisher.objects.bulk_update(
- publisher_objs_for_update, ["quality", "aggregate"], batch_size=10000
- )
+ db.Publisher.objects.bulk_update(
+ publisher_objs_for_update, ["quality", "aggregate"], batch_size=10000
+ )
- # Clear all caches - data has changed
- cache.clear()
+ # Clear all caches - data has changed
+ cache.clear()
diff --git a/datastore/data_quality/quality_data.py b/datastore/data_quality/quality_data.py
index 7f6ac026..835d6188 100644
--- a/datastore/data_quality/quality_data.py
+++ b/datastore/data_quality/quality_data.py
@@ -384,7 +384,7 @@ def get_publisher_quality_grants(self):
def get_pc_quality_publishers(self):
ret = {}
- publishers = db.Publisher.objects.filter(getter_run=db.GetterRun.latest())
+ publishers = db.Publisher.objects.all()
total_publishers_all = publishers.count()
diff --git a/datastore/db/fixtures/test_data.json b/datastore/db/fixtures/test_data.json
index f828ef81..ab64e33f 100644
--- a/datastore/db/fixtures/test_data.json
+++ b/datastore/db/fixtures/test_data.json
@@ -1 +1 @@
-[{"model": "db.latest", "pk": 4, "fields": {"series": "PREVIOUS", "updated": "2023-10-27T16:22:31.875Z"}}, {"model": "db.latest", "pk": 5, "fields": {"series": "CURRENT", "updated": "2023-10-27T16:22:35.820Z"}}, {"model": "db.getterrun", "pk": 1, "fields": {"datetime": "2023-10-26T16:23:30.632Z", "archived": false}}, {"model": "db.getterrun", "pk": 2, "fields": {"datetime": "2023-10-25T16:23:30.635Z", "archived": false}}, {"model": "db.getterrun", "pk": 3, "fields": {"datetime": "2023-10-24T16:23:30.637Z", "archived": false}}, {"model": "db.getterrun", "pk": 4, "fields": {"datetime": "2023-10-23T16:23:30.638Z", "archived": false}}, {"model": "db.sourcefile", "pk": 1, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The publisher", "org_id": "GB-CHC-9000000", "prefix": "360g-aphed1Ohd8", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Oow2Nohcei", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Oow2Nohcei.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 971, "min_amount": 65, "total_amount": 2833, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Oow2Nohcei.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 2, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The xoidi9Aes8 publisher", "org_id": "GB-CHC-9000001", "prefix": "360g-eeth0Kaiqu", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Aebaepi3wi", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Aebaepi3wi.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 802, "min_amount": 128, "total_amount": 2392, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Aebaepi3wi.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 3, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The phihith7Th publisher", "org_id": "GB-CHC-9000002", "prefix": "360g-Ahtahs5vaj", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Thool7dohT", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Thool7dohT.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 828, "min_amount": 227, "total_amount": 3041, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Thool7dohT.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 4, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Uzee4aebah publisher", "org_id": "GB-CHC-9000003", "prefix": "360g-Pheiquohr3", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "oon2iR4eil", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/oon2iR4eil.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 964, "min_amount": 79, "total_amount": 2915, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/oon2iR4eil.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 5, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Tha2eechei publisher", "org_id": "GB-CHC-9000004", "prefix": "360g-Eikie9coo5", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "thoGh8aing", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/thoGh8aing.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 889, "min_amount": 87, "total_amount": 2862, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/thoGh8aing.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 6, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The hoox7AbieB publisher", "org_id": "GB-CHC-9000005", "prefix": "360g-Jae4ceokob", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Ukohleihi3", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Ukohleihi3.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 675, "min_amount": 55, "total_amount": 1337, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Ukohleihi3.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 7, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The UaPahr0eix publisher", "org_id": "GB-CHC-9000006", "prefix": "360g-sho1Loayai", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "ahpoY9eema", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/ahpoY9eema.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 877, "min_amount": 115, "total_amount": 2531, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/ahpoY9eema.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 8, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ieShe7au8Y publisher", "org_id": "GB-CHC-9000007", "prefix": "360g-ailiitei1O", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Jair4ooha0", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Jair4ooha0.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 990, "min_amount": 145, "total_amount": 2562, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Jair4ooha0.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 9, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ohy6ohna0C publisher", "org_id": "GB-CHC-9000008", "prefix": "360g-INg3omaiNe", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "uH0Ay2kein", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/uH0Ay2kein.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 821, "min_amount": 267, "total_amount": 2863, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/uH0Ay2kein.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 10, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Heex1ieKu0 publisher", "org_id": "GB-CHC-9000009", "prefix": "360g-Ap0inaap5e", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "duLioc6uci", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/duLioc6uci.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 700, "min_amount": 46, "total_amount": 1711, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/duLioc6uci.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 11, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The publisher", "org_id": "GB-CHC-9000000", "prefix": "360g-aphed1Ohd8", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Oow2Nohcei", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Oow2Nohcei.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 971, "min_amount": 65, "total_amount": 2833, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Oow2Nohcei.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 12, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The xoidi9Aes8 publisher", "org_id": "GB-CHC-9000001", "prefix": "360g-eeth0Kaiqu", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Aebaepi3wi", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Aebaepi3wi.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 802, "min_amount": 128, "total_amount": 2392, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Aebaepi3wi.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 13, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The phihith7Th publisher", "org_id": "GB-CHC-9000002", "prefix": "360g-Ahtahs5vaj", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Thool7dohT", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Thool7dohT.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 828, "min_amount": 227, "total_amount": 3041, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Thool7dohT.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 14, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Uzee4aebah publisher", "org_id": "GB-CHC-9000003", "prefix": "360g-Pheiquohr3", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "oon2iR4eil", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/oon2iR4eil.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 964, "min_amount": 79, "total_amount": 2915, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/oon2iR4eil.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 15, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Tha2eechei publisher", "org_id": "GB-CHC-9000004", "prefix": "360g-Eikie9coo5", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "thoGh8aing", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/thoGh8aing.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 889, "min_amount": 87, "total_amount": 2862, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/thoGh8aing.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 16, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The hoox7AbieB publisher", "org_id": "GB-CHC-9000005", "prefix": "360g-Jae4ceokob", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Ukohleihi3", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Ukohleihi3.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 675, "min_amount": 55, "total_amount": 1337, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Ukohleihi3.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 17, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The UaPahr0eix publisher", "org_id": "GB-CHC-9000006", "prefix": "360g-sho1Loayai", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "ahpoY9eema", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/ahpoY9eema.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 877, "min_amount": 115, "total_amount": 2531, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/ahpoY9eema.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 18, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ieShe7au8Y publisher", "org_id": "GB-CHC-9000007", "prefix": "360g-ailiitei1O", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Jair4ooha0", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Jair4ooha0.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 990, "min_amount": 145, "total_amount": 2562, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Jair4ooha0.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 19, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ohy6ohna0C publisher", "org_id": "GB-CHC-9000008", "prefix": "360g-INg3omaiNe", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "uH0Ay2kein", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/uH0Ay2kein.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 821, "min_amount": 267, "total_amount": 2863, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/uH0Ay2kein.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 20, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Heex1ieKu0 publisher", "org_id": "GB-CHC-9000009", "prefix": "360g-Ap0inaap5e", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "duLioc6uci", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/duLioc6uci.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 700, "min_amount": 46, "total_amount": 1711, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/duLioc6uci.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 21, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The publisher", "org_id": "GB-CHC-9000000", "prefix": "360g-aphed1Ohd8", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Oow2Nohcei", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Oow2Nohcei.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 971, "min_amount": 65, "total_amount": 2833, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Oow2Nohcei.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 22, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The xoidi9Aes8 publisher", "org_id": "GB-CHC-9000001", "prefix": "360g-eeth0Kaiqu", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Aebaepi3wi", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Aebaepi3wi.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 802, "min_amount": 128, "total_amount": 2392, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Aebaepi3wi.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 23, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The phihith7Th publisher", "org_id": "GB-CHC-9000002", "prefix": "360g-Ahtahs5vaj", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Thool7dohT", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Thool7dohT.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 828, "min_amount": 227, "total_amount": 3041, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Thool7dohT.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 24, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Uzee4aebah publisher", "org_id": "GB-CHC-9000003", "prefix": "360g-Pheiquohr3", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "oon2iR4eil", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/oon2iR4eil.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 964, "min_amount": 79, "total_amount": 2915, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/oon2iR4eil.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 25, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Tha2eechei publisher", "org_id": "GB-CHC-9000004", "prefix": "360g-Eikie9coo5", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "thoGh8aing", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/thoGh8aing.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 889, "min_amount": 87, "total_amount": 2862, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/thoGh8aing.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 26, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The hoox7AbieB publisher", "org_id": "GB-CHC-9000005", "prefix": "360g-Jae4ceokob", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Ukohleihi3", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Ukohleihi3.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 675, "min_amount": 55, "total_amount": 1337, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Ukohleihi3.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 27, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The UaPahr0eix publisher", "org_id": "GB-CHC-9000006", "prefix": "360g-sho1Loayai", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "ahpoY9eema", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/ahpoY9eema.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 877, "min_amount": 115, "total_amount": 2531, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/ahpoY9eema.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 28, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ieShe7au8Y publisher", "org_id": "GB-CHC-9000007", "prefix": "360g-ailiitei1O", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Jair4ooha0", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Jair4ooha0.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 990, "min_amount": 145, "total_amount": 2562, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Jair4ooha0.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 29, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ohy6ohna0C publisher", "org_id": "GB-CHC-9000008", "prefix": "360g-INg3omaiNe", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "uH0Ay2kein", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/uH0Ay2kein.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 821, "min_amount": 267, "total_amount": 2863, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/uH0Ay2kein.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 30, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Heex1ieKu0 publisher", "org_id": "GB-CHC-9000009", "prefix": "360g-Ap0inaap5e", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "duLioc6uci", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/duLioc6uci.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 700, "min_amount": 46, "total_amount": 1711, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/duLioc6uci.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 31, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The publisher", "org_id": "GB-CHC-9000000", "prefix": "360g-aphed1Ohd8", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Oow2Nohcei", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Oow2Nohcei.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 971, "min_amount": 65, "total_amount": 2833, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Oow2Nohcei.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 32, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The xoidi9Aes8 publisher", "org_id": "GB-CHC-9000001", "prefix": "360g-eeth0Kaiqu", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Aebaepi3wi", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Aebaepi3wi.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 802, "min_amount": 128, "total_amount": 2392, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Aebaepi3wi.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 33, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The phihith7Th publisher", "org_id": "GB-CHC-9000002", "prefix": "360g-Ahtahs5vaj", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Thool7dohT", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Thool7dohT.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 828, "min_amount": 227, "total_amount": 3041, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Thool7dohT.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 34, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Uzee4aebah publisher", "org_id": "GB-CHC-9000003", "prefix": "360g-Pheiquohr3", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "oon2iR4eil", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/oon2iR4eil.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 964, "min_amount": 79, "total_amount": 2915, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/oon2iR4eil.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 35, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Tha2eechei publisher", "org_id": "GB-CHC-9000004", "prefix": "360g-Eikie9coo5", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "thoGh8aing", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/thoGh8aing.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 889, "min_amount": 87, "total_amount": 2862, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/thoGh8aing.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 36, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The hoox7AbieB publisher", "org_id": "GB-CHC-9000005", "prefix": "360g-Jae4ceokob", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Ukohleihi3", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Ukohleihi3.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 675, "min_amount": 55, "total_amount": 1337, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Ukohleihi3.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 37, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The UaPahr0eix publisher", "org_id": "GB-CHC-9000006", "prefix": "360g-sho1Loayai", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "ahpoY9eema", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/ahpoY9eema.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 877, "min_amount": 115, "total_amount": 2531, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/ahpoY9eema.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 38, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ieShe7au8Y publisher", "org_id": "GB-CHC-9000007", "prefix": "360g-ailiitei1O", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Jair4ooha0", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Jair4ooha0.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 990, "min_amount": 145, "total_amount": 2562, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Jair4ooha0.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 39, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ohy6ohna0C publisher", "org_id": "GB-CHC-9000008", "prefix": "360g-INg3omaiNe", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "uH0Ay2kein", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/uH0Ay2kein.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 821, "min_amount": 267, "total_amount": 2863, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/uH0Ay2kein.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 40, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Heex1ieKu0 publisher", "org_id": "GB-CHC-9000009", "prefix": "360g-Ap0inaap5e", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "duLioc6uci", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/duLioc6uci.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 700, "min_amount": 46, "total_amount": 1711, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/duLioc6uci.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.publisher", "pk": 1, "fields": {"org_id": "GB-CHC-9000000", "name": "The publisher", "aggregate": {"total": {"GBP": 2833.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The publisher", "org_id": "GB-CHC-9000000", "prefix": "360g-aphed1Ohd8", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-aphed1Ohd8", "getter_run": 1}}, {"model": "db.publisher", "pk": 2, "fields": {"org_id": "GB-CHC-9000001", "name": "The xoidi9Aes8 publisher", "aggregate": {"total": {"GBP": 2392.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The xoidi9Aes8 publisher", "org_id": "GB-CHC-9000001", "prefix": "360g-eeth0Kaiqu", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-eeth0Kaiqu", "getter_run": 1}}, {"model": "db.publisher", "pk": 3, "fields": {"org_id": "GB-CHC-9000002", "name": "The phihith7Th publisher", "aggregate": {"total": {"GBP": 3041.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The phihith7Th publisher", "org_id": "GB-CHC-9000002", "prefix": "360g-Ahtahs5vaj", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Ahtahs5vaj", "getter_run": 1}}, {"model": "db.publisher", "pk": 4, "fields": {"org_id": "GB-CHC-9000003", "name": "The Uzee4aebah publisher", "aggregate": {"total": {"GBP": 2915.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Uzee4aebah publisher", "org_id": "GB-CHC-9000003", "prefix": "360g-Pheiquohr3", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Pheiquohr3", "getter_run": 1}}, {"model": "db.publisher", "pk": 5, "fields": {"org_id": "GB-CHC-9000004", "name": "The Tha2eechei publisher", "aggregate": {"total": {"GBP": 2862.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Tha2eechei publisher", "org_id": "GB-CHC-9000004", "prefix": "360g-Eikie9coo5", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Eikie9coo5", "getter_run": 1}}, {"model": "db.publisher", "pk": 6, "fields": {"org_id": "GB-CHC-9000005", "name": "The hoox7AbieB publisher", "aggregate": {"total": {"GBP": 1337.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The hoox7AbieB publisher", "org_id": "GB-CHC-9000005", "prefix": "360g-Jae4ceokob", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Jae4ceokob", "getter_run": 1}}, {"model": "db.publisher", "pk": 7, "fields": {"org_id": "GB-CHC-9000006", "name": "The UaPahr0eix publisher", "aggregate": {"total": {"GBP": 2531.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The UaPahr0eix publisher", "org_id": "GB-CHC-9000006", "prefix": "360g-sho1Loayai", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-sho1Loayai", "getter_run": 1}}, {"model": "db.publisher", "pk": 8, "fields": {"org_id": "GB-CHC-9000007", "name": "The ieShe7au8Y publisher", "aggregate": {"total": {"GBP": 2562.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ieShe7au8Y publisher", "org_id": "GB-CHC-9000007", "prefix": "360g-ailiitei1O", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-ailiitei1O", "getter_run": 1}}, {"model": "db.publisher", "pk": 9, "fields": {"org_id": "GB-CHC-9000008", "name": "The ohy6ohna0C publisher", "aggregate": {"total": {"GBP": 2863.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ohy6ohna0C publisher", "org_id": "GB-CHC-9000008", "prefix": "360g-INg3omaiNe", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-INg3omaiNe", "getter_run": 1}}, {"model": "db.publisher", "pk": 10, "fields": {"org_id": "GB-CHC-9000009", "name": "The Heex1ieKu0 publisher", "aggregate": {"total": {"GBP": 1711.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Heex1ieKu0 publisher", "org_id": "GB-CHC-9000009", "prefix": "360g-Ap0inaap5e", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Ap0inaap5e", "getter_run": 1}}, {"model": "db.publisher", "pk": 11, "fields": {"org_id": "GB-CHC-9000000", "name": "The publisher", "aggregate": {"total": {"GBP": 2833.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The publisher", "org_id": "GB-CHC-9000000", "prefix": "360g-aphed1Ohd8", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-aphed1Ohd8", "getter_run": 2}}, {"model": "db.publisher", "pk": 12, "fields": {"org_id": "GB-CHC-9000001", "name": "The xoidi9Aes8 publisher", "aggregate": {"total": {"GBP": 2392.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The xoidi9Aes8 publisher", "org_id": "GB-CHC-9000001", "prefix": "360g-eeth0Kaiqu", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-eeth0Kaiqu", "getter_run": 2}}, {"model": "db.publisher", "pk": 13, "fields": {"org_id": "GB-CHC-9000002", "name": "The phihith7Th publisher", "aggregate": {"total": {"GBP": 3041.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The phihith7Th publisher", "org_id": "GB-CHC-9000002", "prefix": "360g-Ahtahs5vaj", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Ahtahs5vaj", "getter_run": 2}}, {"model": "db.publisher", "pk": 14, "fields": {"org_id": "GB-CHC-9000003", "name": "The Uzee4aebah publisher", "aggregate": {"total": {"GBP": 2915.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Uzee4aebah publisher", "org_id": "GB-CHC-9000003", "prefix": "360g-Pheiquohr3", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Pheiquohr3", "getter_run": 2}}, {"model": "db.publisher", "pk": 15, "fields": {"org_id": "GB-CHC-9000004", "name": "The Tha2eechei publisher", "aggregate": {"total": {"GBP": 2862.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Tha2eechei publisher", "org_id": "GB-CHC-9000004", "prefix": "360g-Eikie9coo5", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Eikie9coo5", "getter_run": 2}}, {"model": "db.publisher", "pk": 16, "fields": {"org_id": "GB-CHC-9000005", "name": "The hoox7AbieB publisher", "aggregate": {"total": {"GBP": 1337.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The hoox7AbieB publisher", "org_id": "GB-CHC-9000005", "prefix": "360g-Jae4ceokob", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Jae4ceokob", "getter_run": 2}}, {"model": "db.publisher", "pk": 17, "fields": {"org_id": "GB-CHC-9000006", "name": "The UaPahr0eix publisher", "aggregate": {"total": {"GBP": 2531.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The UaPahr0eix publisher", "org_id": "GB-CHC-9000006", "prefix": "360g-sho1Loayai", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-sho1Loayai", "getter_run": 2}}, {"model": "db.publisher", "pk": 18, "fields": {"org_id": "GB-CHC-9000007", "name": "The ieShe7au8Y publisher", "aggregate": {"total": {"GBP": 2562.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ieShe7au8Y publisher", "org_id": "GB-CHC-9000007", "prefix": "360g-ailiitei1O", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-ailiitei1O", "getter_run": 2}}, {"model": "db.publisher", "pk": 19, "fields": {"org_id": "GB-CHC-9000008", "name": "The ohy6ohna0C publisher", "aggregate": {"total": {"GBP": 2863.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ohy6ohna0C publisher", "org_id": "GB-CHC-9000008", "prefix": "360g-INg3omaiNe", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-INg3omaiNe", "getter_run": 2}}, {"model": "db.publisher", "pk": 20, "fields": {"org_id": "GB-CHC-9000009", "name": "The Heex1ieKu0 publisher", "aggregate": {"total": {"GBP": 1711.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Heex1ieKu0 publisher", "org_id": "GB-CHC-9000009", "prefix": "360g-Ap0inaap5e", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Ap0inaap5e", "getter_run": 2}}, {"model": "db.publisher", "pk": 21, "fields": {"org_id": "GB-CHC-9000000", "name": "The publisher", "aggregate": {"total": {"GBP": 2833.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The publisher", "org_id": "GB-CHC-9000000", "prefix": "360g-aphed1Ohd8", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-aphed1Ohd8", "getter_run": 3}}, {"model": "db.publisher", "pk": 22, "fields": {"org_id": "GB-CHC-9000001", "name": "The xoidi9Aes8 publisher", "aggregate": {"total": {"GBP": 2392.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The xoidi9Aes8 publisher", "org_id": "GB-CHC-9000001", "prefix": "360g-eeth0Kaiqu", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-eeth0Kaiqu", "getter_run": 3}}, {"model": "db.publisher", "pk": 23, "fields": {"org_id": "GB-CHC-9000002", "name": "The phihith7Th publisher", "aggregate": {"total": {"GBP": 3041.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The phihith7Th publisher", "org_id": "GB-CHC-9000002", "prefix": "360g-Ahtahs5vaj", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Ahtahs5vaj", "getter_run": 3}}, {"model": "db.publisher", "pk": 24, "fields": {"org_id": "GB-CHC-9000003", "name": "The Uzee4aebah publisher", "aggregate": {"total": {"GBP": 2915.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Uzee4aebah publisher", "org_id": "GB-CHC-9000003", "prefix": "360g-Pheiquohr3", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Pheiquohr3", "getter_run": 3}}, {"model": "db.publisher", "pk": 25, "fields": {"org_id": "GB-CHC-9000004", "name": "The Tha2eechei publisher", "aggregate": {"total": {"GBP": 2862.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Tha2eechei publisher", "org_id": "GB-CHC-9000004", "prefix": "360g-Eikie9coo5", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Eikie9coo5", "getter_run": 3}}, {"model": "db.publisher", "pk": 26, "fields": {"org_id": "GB-CHC-9000005", "name": "The hoox7AbieB publisher", "aggregate": {"total": {"GBP": 1337.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The hoox7AbieB publisher", "org_id": "GB-CHC-9000005", "prefix": "360g-Jae4ceokob", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Jae4ceokob", "getter_run": 3}}, {"model": "db.publisher", "pk": 27, "fields": {"org_id": "GB-CHC-9000006", "name": "The UaPahr0eix publisher", "aggregate": {"total": {"GBP": 2531.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The UaPahr0eix publisher", "org_id": "GB-CHC-9000006", "prefix": "360g-sho1Loayai", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-sho1Loayai", "getter_run": 3}}, {"model": "db.publisher", "pk": 28, "fields": {"org_id": "GB-CHC-9000007", "name": "The ieShe7au8Y publisher", "aggregate": {"total": {"GBP": 2562.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ieShe7au8Y publisher", "org_id": "GB-CHC-9000007", "prefix": "360g-ailiitei1O", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-ailiitei1O", "getter_run": 3}}, {"model": "db.publisher", "pk": 29, "fields": {"org_id": "GB-CHC-9000008", "name": "The ohy6ohna0C publisher", "aggregate": {"total": {"GBP": 2863.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ohy6ohna0C publisher", "org_id": "GB-CHC-9000008", "prefix": "360g-INg3omaiNe", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-INg3omaiNe", "getter_run": 3}}, {"model": "db.publisher", "pk": 30, "fields": {"org_id": "GB-CHC-9000009", "name": "The Heex1ieKu0 publisher", "aggregate": {"total": {"GBP": 1711.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Heex1ieKu0 publisher", "org_id": "GB-CHC-9000009", "prefix": "360g-Ap0inaap5e", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Ap0inaap5e", "getter_run": 3}}, {"model": "db.publisher", "pk": 31, "fields": {"org_id": "GB-CHC-9000000", "name": "The publisher", "aggregate": {"total": {"GBP": 2833.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The publisher", "org_id": "GB-CHC-9000000", "prefix": "360g-aphed1Ohd8", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-aphed1Ohd8", "getter_run": 4}}, {"model": "db.publisher", "pk": 32, "fields": {"org_id": "GB-CHC-9000001", "name": "The xoidi9Aes8 publisher", "aggregate": {"total": {"GBP": 2392.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The xoidi9Aes8 publisher", "org_id": "GB-CHC-9000001", "prefix": "360g-eeth0Kaiqu", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-eeth0Kaiqu", "getter_run": 4}}, {"model": "db.publisher", "pk": 33, "fields": {"org_id": "GB-CHC-9000002", "name": "The phihith7Th publisher", "aggregate": {"total": {"GBP": 3041.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The phihith7Th publisher", "org_id": "GB-CHC-9000002", "prefix": "360g-Ahtahs5vaj", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Ahtahs5vaj", "getter_run": 4}}, {"model": "db.publisher", "pk": 34, "fields": {"org_id": "GB-CHC-9000003", "name": "The Uzee4aebah publisher", "aggregate": {"total": {"GBP": 2915.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Uzee4aebah publisher", "org_id": "GB-CHC-9000003", "prefix": "360g-Pheiquohr3", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Pheiquohr3", "getter_run": 4}}, {"model": "db.publisher", "pk": 35, "fields": {"org_id": "GB-CHC-9000004", "name": "The Tha2eechei publisher", "aggregate": {"total": {"GBP": 2862.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Tha2eechei publisher", "org_id": "GB-CHC-9000004", "prefix": "360g-Eikie9coo5", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Eikie9coo5", "getter_run": 4}}, {"model": "db.publisher", "pk": 36, "fields": {"org_id": "GB-CHC-9000005", "name": "The hoox7AbieB publisher", "aggregate": {"total": {"GBP": 1337.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The hoox7AbieB publisher", "org_id": "GB-CHC-9000005", "prefix": "360g-Jae4ceokob", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Jae4ceokob", "getter_run": 4}}, {"model": "db.publisher", "pk": 37, "fields": {"org_id": "GB-CHC-9000006", "name": "The UaPahr0eix publisher", "aggregate": {"total": {"GBP": 2531.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The UaPahr0eix publisher", "org_id": "GB-CHC-9000006", "prefix": "360g-sho1Loayai", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-sho1Loayai", "getter_run": 4}}, {"model": "db.publisher", "pk": 38, "fields": {"org_id": "GB-CHC-9000007", "name": "The ieShe7au8Y publisher", "aggregate": {"total": {"GBP": 2562.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ieShe7au8Y publisher", "org_id": "GB-CHC-9000007", "prefix": "360g-ailiitei1O", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-ailiitei1O", "getter_run": 4}}, {"model": "db.publisher", "pk": 39, "fields": {"org_id": "GB-CHC-9000008", "name": "The ohy6ohna0C publisher", "aggregate": {"total": {"GBP": 2863.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ohy6ohna0C publisher", "org_id": "GB-CHC-9000008", "prefix": "360g-INg3omaiNe", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-INg3omaiNe", "getter_run": 4}}, {"model": "db.publisher", "pk": 40, "fields": {"org_id": "GB-CHC-9000009", "name": "The Heex1ieKu0 publisher", "aggregate": {"total": {"GBP": 1711.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2014": 0, "2015": 0, "2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0}, "orgIdTypes": {}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Heex1ieKu0 publisher", "org_id": "GB-CHC-9000009", "prefix": "360g-Ap0inaap5e", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Ap0inaap5e", "getter_run": 4}}, {"model": "db.recipient", "pk": 9, "fields": {"org_id": "360G-example-a", "name": "Receive an example grant", "aggregate": {"grants": 46, "currencies": {"GBP": {"recipient_org": {"avg": 504.0217391304348, "max": 990, "min": 46, "total": 23185, "grants": 46}}}, "grants_ind": 0, "grants_org": 46, "maxAwardDate": "2019-10-03", "minAwardDate": "2019-10-03"}, "additional_data": {"alternative_names": []}, "source": "GRANT", "non_primary_org_ids": "[\"360G-example-nonprimary\"]"}}, {"model": "db.recipient", "pk": 10, "fields": {"org_id": "GB-COH-example-a", "name": "Receive an example grant", "aggregate": {"grants": 4, "currencies": {"GBP": {"recipient_org": {"avg": 465.5, "max": 888, "min": 65, "total": 1862, "grants": 4}}}, "grants_ind": 0, "grants_org": 4, "maxAwardDate": "2019-10-03", "minAwardDate": "2019-10-03"}, "additional_data": {"alternative_names": []}, "source": "GRANT", "non_primary_org_ids": "[]"}}, {"model": "db.funder", "pk": 7, "fields": {"org_id": "GB-example-b", "name": "Funding for examples", "aggregate": {"grants": 50, "currencies": {"GBP": {"recipient_org": {"avg": 500.94, "max": 990, "min": 46, "total": 25047, "grants": 50}}}, "grants_ind": 0, "grants_org": 50, "maxAwardDate": "2019-10-03", "minAwardDate": "2019-10-03"}, "additional_data": {"alternative_names": []}, "source": "GRANT", "non_primary_org_ids": "[]"}}, {"model": "db.grant", "pk": 1, "fields": {"grant_id": "360G-kahM5Ooc2u", "data": {"id": "360G-kahM5Ooc2u", "title": "The luumuch5Ir grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 971, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 1, "source_file": 1, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 2, "fields": {"grant_id": "360G-ie1yieThae", "data": {"id": "360G-ie1yieThae", "title": "The iKe8ieng2o grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 237, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 1, "source_file": 1, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 3, "fields": {"grant_id": "360G-aeNeghah3T", "data": {"id": "360G-aeNeghah3T", "title": "The mod6AimieY grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 888, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 1, "source_file": 1, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 4, "fields": {"grant_id": "360G-Ahc5Ooy2ce", "data": {"id": "360G-Ahc5Ooy2ce", "title": "The vueMueN2ci grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 672, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 1, "source_file": 1, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 5, "fields": {"grant_id": "360G-na5Yoo1eTh", "data": {"id": "360G-na5Yoo1eTh", "title": "The oorei2tiSu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 65, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 1, "source_file": 1, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 6, "fields": {"grant_id": "360G-kaath6Cha0", "data": {"id": "360G-kaath6Cha0", "title": "The uLaez7diu1 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 443, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 2, "source_file": 2, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 7, "fields": {"grant_id": "360G-Ooch7gohNi", "data": {"id": "360G-Ooch7gohNi", "title": "The aePhie7Aer grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 802, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 2, "source_file": 2, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 8, "fields": {"grant_id": "360G-Ol5ohroeMi", "data": {"id": "360G-Ol5ohroeMi", "title": "The egaeLeg2co grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 726, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 2, "source_file": 2, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 9, "fields": {"grant_id": "360G-aeNg7zi9sh", "data": {"id": "360G-aeNg7zi9sh", "title": "The aeloh2oz5D grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 293, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 2, "source_file": 2, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 10, "fields": {"grant_id": "360G-eiGoon6ohp", "data": {"id": "360G-eiGoon6ohp", "title": "The jei0Quoepu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 128, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 2, "source_file": 2, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 11, "fields": {"grant_id": "360G-shach4Die8", "data": {"id": "360G-shach4Die8", "title": "The eiChieKa0i grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 227, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-nonprimary", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 3, "source_file": 3, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-nonprimary\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 12, "fields": {"grant_id": "360G-mee1ipooHu", "data": {"id": "360G-mee1ipooHu", "title": "The heewaim1Yi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 641, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 3, "source_file": 3, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 13, "fields": {"grant_id": "360G-ohmahGo3Ru", "data": {"id": "360G-ohmahGo3Ru", "title": "The yeyi1Zee7i grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 724, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 3, "source_file": 3, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 14, "fields": {"grant_id": "360G-Fu1iah5To8", "data": {"id": "360G-Fu1iah5To8", "title": "The Iegekiev5s grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 828, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 3, "source_file": 3, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 15, "fields": {"grant_id": "360G-xooGhuuv7f", "data": {"id": "360G-xooGhuuv7f", "title": "The ThieS0Eigh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 621, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 3, "source_file": 3, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 16, "fields": {"grant_id": "360G-iexu4Sohmo", "data": {"id": "360G-iexu4Sohmo", "title": "The ou2OoGhee9 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 964, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 4, "source_file": 4, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 17, "fields": {"grant_id": "360G-fecieBi0ne", "data": {"id": "360G-fecieBi0ne", "title": "The ce1wieKudi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 475, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 4, "source_file": 4, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 18, "fields": {"grant_id": "360G-cayeenoh1C", "data": {"id": "360G-cayeenoh1C", "title": "The eeNeh0it0c grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 943, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 4, "source_file": 4, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 19, "fields": {"grant_id": "360G-jee5Eig6sh", "data": {"id": "360G-jee5Eig6sh", "title": "The yeekeWai7z grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 79, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 4, "source_file": 4, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 20, "fields": {"grant_id": "360G-Iegheev0pi", "data": {"id": "360G-Iegheev0pi", "title": "The Eitai5asae grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 454, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 4, "source_file": 4, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 21, "fields": {"grant_id": "360G-Naur7raech", "data": {"id": "360G-Naur7raech", "title": "The OhD0Moofup grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 480, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 5, "source_file": 5, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 22, "fields": {"grant_id": "360G-Ongaich7ie", "data": {"id": "360G-Ongaich7ie", "title": "The gai3Paethu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 872, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 5, "source_file": 5, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 23, "fields": {"grant_id": "360G-aeKaviep9l", "data": {"id": "360G-aeKaviep9l", "title": "The chaiwe1aeL grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 534, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 5, "source_file": 5, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 24, "fields": {"grant_id": "360G-thieRoo5Ah", "data": {"id": "360G-thieRoo5Ah", "title": "The Vakeic2phe grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 889, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 5, "source_file": 5, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 25, "fields": {"grant_id": "360G-Nohr6Ne5ei", "data": {"id": "360G-Nohr6Ne5ei", "title": "The uGh5esh6Sh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 87, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 5, "source_file": 5, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 26, "fields": {"grant_id": "360G-ieghohc9uW", "data": {"id": "360G-ieghohc9uW", "title": "The te3Jua8bi8 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 220, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 6, "source_file": 6, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 27, "fields": {"grant_id": "360G-Pahwai9bai", "data": {"id": "360G-Pahwai9bai", "title": "The Eech0Ouph4 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 265, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 6, "source_file": 6, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 28, "fields": {"grant_id": "360G-Quah4yi8ee", "data": {"id": "360G-Quah4yi8ee", "title": "The ooba7Thahv grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 55, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 6, "source_file": 6, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 29, "fields": {"grant_id": "360G-aiqu3OhFei", "data": {"id": "360G-aiqu3OhFei", "title": "The zoaQuau7ie grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 122, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 6, "source_file": 6, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 30, "fields": {"grant_id": "360G-thaeche0Ah", "data": {"id": "360G-thaeche0Ah", "title": "The oy1Apohng9 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 675, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 6, "source_file": 6, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 31, "fields": {"grant_id": "360G-Aex5Fachou", "data": {"id": "360G-Aex5Fachou", "title": "The thieSh0zu8 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 115, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 7, "source_file": 7, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 32, "fields": {"grant_id": "360G-io7taiR4ee", "data": {"id": "360G-io7taiR4ee", "title": "The uiza7Xeeyi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 877, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 7, "source_file": 7, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 33, "fields": {"grant_id": "360G-EeLoh8mahd", "data": {"id": "360G-EeLoh8mahd", "title": "The iCh4ohCei3 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 660, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 7, "source_file": 7, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 34, "fields": {"grant_id": "360G-ooR0MeunuL", "data": {"id": "360G-ooR0MeunuL", "title": "The reeV8Ait3o grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 735, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 7, "source_file": 7, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 35, "fields": {"grant_id": "360G-fae3la4oGe", "data": {"id": "360G-fae3la4oGe", "title": "The ohcie3Ki3k grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 144, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 7, "source_file": 7, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 36, "fields": {"grant_id": "360G-EighekohH1", "data": {"id": "360G-EighekohH1", "title": "The Faelio0jah grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 145, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 8, "source_file": 8, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 37, "fields": {"grant_id": "360G-Eiz4Veij8o", "data": {"id": "360G-Eiz4Veij8o", "title": "The IKoesou1ze grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 210, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 8, "source_file": 8, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 38, "fields": {"grant_id": "360G-egh2OxieNg", "data": {"id": "360G-egh2OxieNg", "title": "The iebogh6eiB grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 990, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 8, "source_file": 8, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 39, "fields": {"grant_id": "360G-ieSoa9reef", "data": {"id": "360G-ieSoa9reef", "title": "The eecoh1waiG grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 879, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 8, "source_file": 8, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 40, "fields": {"grant_id": "360G-tahb2paK8c", "data": {"id": "360G-tahb2paK8c", "title": "The xeojae1Ohz grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 338, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 8, "source_file": 8, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 41, "fields": {"grant_id": "360G-oBeisai1ie", "data": {"id": "360G-oBeisai1ie", "title": "The Foo4iefaik grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 553, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 9, "source_file": 9, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 42, "fields": {"grant_id": "360G-faeK3sah6o", "data": {"id": "360G-faeK3sah6o", "title": "The iiw0ieti8U grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 775, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 9, "source_file": 9, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 43, "fields": {"grant_id": "360G-kuBue1Ahli", "data": {"id": "360G-kuBue1Ahli", "title": "The ohfei4leJ5 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 447, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 9, "source_file": 9, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 44, "fields": {"grant_id": "360G-ahFiF8rohd", "data": {"id": "360G-ahFiF8rohd", "title": "The wioSh3EeCh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 267, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 9, "source_file": 9, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 45, "fields": {"grant_id": "360G-ahg9Bee2ec", "data": {"id": "360G-ahg9Bee2ec", "title": "The boothawu5W grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 821, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 9, "source_file": 9, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 46, "fields": {"grant_id": "360G-Fup2heirae", "data": {"id": "360G-Fup2heirae", "title": "The goisieFee3 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 229, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 10, "source_file": 10, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 47, "fields": {"grant_id": "360G-aep6ahng6N", "data": {"id": "360G-aep6ahng6N", "title": "The eerefeeh1K grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 610, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 10, "source_file": 10, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 48, "fields": {"grant_id": "360G-jiethoh5Ae", "data": {"id": "360G-jiethoh5Ae", "title": "The oGhoo5ue1c grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 126, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 10, "source_file": 10, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 49, "fields": {"grant_id": "360G-dauv5Vaih5", "data": {"id": "360G-dauv5Vaih5", "title": "The na2kaiD9ae grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 700, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 10, "source_file": 10, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 50, "fields": {"grant_id": "360G-wos3ooDaig", "data": {"id": "360G-wos3ooDaig", "title": "The Roh5veicei grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 46, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "publisher": 10, "source_file": 10, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 51, "fields": {"grant_id": "360G-kahM5Ooc2u", "data": {"id": "360G-kahM5Ooc2u", "title": "The luumuch5Ir grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 971, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 11, "source_file": 11, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 52, "fields": {"grant_id": "360G-ie1yieThae", "data": {"id": "360G-ie1yieThae", "title": "The iKe8ieng2o grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 237, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 11, "source_file": 11, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 53, "fields": {"grant_id": "360G-aeNeghah3T", "data": {"id": "360G-aeNeghah3T", "title": "The mod6AimieY grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 888, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 11, "source_file": 11, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 54, "fields": {"grant_id": "360G-Ahc5Ooy2ce", "data": {"id": "360G-Ahc5Ooy2ce", "title": "The vueMueN2ci grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 672, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 11, "source_file": 11, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 55, "fields": {"grant_id": "360G-na5Yoo1eTh", "data": {"id": "360G-na5Yoo1eTh", "title": "The oorei2tiSu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 65, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 11, "source_file": 11, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 56, "fields": {"grant_id": "360G-kaath6Cha0", "data": {"id": "360G-kaath6Cha0", "title": "The uLaez7diu1 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 443, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 12, "source_file": 12, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 57, "fields": {"grant_id": "360G-Ooch7gohNi", "data": {"id": "360G-Ooch7gohNi", "title": "The aePhie7Aer grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 802, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 12, "source_file": 12, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 58, "fields": {"grant_id": "360G-Ol5ohroeMi", "data": {"id": "360G-Ol5ohroeMi", "title": "The egaeLeg2co grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 726, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 12, "source_file": 12, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 59, "fields": {"grant_id": "360G-aeNg7zi9sh", "data": {"id": "360G-aeNg7zi9sh", "title": "The aeloh2oz5D grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 293, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 12, "source_file": 12, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 60, "fields": {"grant_id": "360G-eiGoon6ohp", "data": {"id": "360G-eiGoon6ohp", "title": "The jei0Quoepu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 128, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 12, "source_file": 12, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 61, "fields": {"grant_id": "360G-shach4Die8", "data": {"id": "360G-shach4Die8", "title": "The eiChieKa0i grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 227, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 13, "source_file": 13, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 62, "fields": {"grant_id": "360G-mee1ipooHu", "data": {"id": "360G-mee1ipooHu", "title": "The heewaim1Yi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 641, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 13, "source_file": 13, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 63, "fields": {"grant_id": "360G-ohmahGo3Ru", "data": {"id": "360G-ohmahGo3Ru", "title": "The yeyi1Zee7i grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 724, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 13, "source_file": 13, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 64, "fields": {"grant_id": "360G-Fu1iah5To8", "data": {"id": "360G-Fu1iah5To8", "title": "The Iegekiev5s grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 828, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 13, "source_file": 13, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 65, "fields": {"grant_id": "360G-xooGhuuv7f", "data": {"id": "360G-xooGhuuv7f", "title": "The ThieS0Eigh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 621, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 13, "source_file": 13, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 66, "fields": {"grant_id": "360G-iexu4Sohmo", "data": {"id": "360G-iexu4Sohmo", "title": "The ou2OoGhee9 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 964, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 14, "source_file": 14, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 67, "fields": {"grant_id": "360G-fecieBi0ne", "data": {"id": "360G-fecieBi0ne", "title": "The ce1wieKudi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 475, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 14, "source_file": 14, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 68, "fields": {"grant_id": "360G-cayeenoh1C", "data": {"id": "360G-cayeenoh1C", "title": "The eeNeh0it0c grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 943, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 14, "source_file": 14, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 69, "fields": {"grant_id": "360G-jee5Eig6sh", "data": {"id": "360G-jee5Eig6sh", "title": "The yeekeWai7z grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 79, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 14, "source_file": 14, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 70, "fields": {"grant_id": "360G-Iegheev0pi", "data": {"id": "360G-Iegheev0pi", "title": "The Eitai5asae grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 454, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 14, "source_file": 14, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 71, "fields": {"grant_id": "360G-Naur7raech", "data": {"id": "360G-Naur7raech", "title": "The OhD0Moofup grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 480, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 15, "source_file": 15, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 72, "fields": {"grant_id": "360G-Ongaich7ie", "data": {"id": "360G-Ongaich7ie", "title": "The gai3Paethu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 872, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 15, "source_file": 15, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 73, "fields": {"grant_id": "360G-aeKaviep9l", "data": {"id": "360G-aeKaviep9l", "title": "The chaiwe1aeL grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 534, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 15, "source_file": 15, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 74, "fields": {"grant_id": "360G-thieRoo5Ah", "data": {"id": "360G-thieRoo5Ah", "title": "The Vakeic2phe grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 889, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 15, "source_file": 15, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 75, "fields": {"grant_id": "360G-Nohr6Ne5ei", "data": {"id": "360G-Nohr6Ne5ei", "title": "The uGh5esh6Sh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 87, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 15, "source_file": 15, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 76, "fields": {"grant_id": "360G-ieghohc9uW", "data": {"id": "360G-ieghohc9uW", "title": "The te3Jua8bi8 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 220, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 16, "source_file": 16, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 77, "fields": {"grant_id": "360G-Pahwai9bai", "data": {"id": "360G-Pahwai9bai", "title": "The Eech0Ouph4 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 265, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 16, "source_file": 16, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 78, "fields": {"grant_id": "360G-Quah4yi8ee", "data": {"id": "360G-Quah4yi8ee", "title": "The ooba7Thahv grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 55, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 16, "source_file": 16, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 79, "fields": {"grant_id": "360G-aiqu3OhFei", "data": {"id": "360G-aiqu3OhFei", "title": "The zoaQuau7ie grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 122, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 16, "source_file": 16, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 80, "fields": {"grant_id": "360G-thaeche0Ah", "data": {"id": "360G-thaeche0Ah", "title": "The oy1Apohng9 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 675, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 16, "source_file": 16, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 81, "fields": {"grant_id": "360G-Aex5Fachou", "data": {"id": "360G-Aex5Fachou", "title": "The thieSh0zu8 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 115, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 17, "source_file": 17, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 82, "fields": {"grant_id": "360G-io7taiR4ee", "data": {"id": "360G-io7taiR4ee", "title": "The uiza7Xeeyi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 877, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 17, "source_file": 17, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 83, "fields": {"grant_id": "360G-EeLoh8mahd", "data": {"id": "360G-EeLoh8mahd", "title": "The iCh4ohCei3 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 660, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 17, "source_file": 17, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 84, "fields": {"grant_id": "360G-ooR0MeunuL", "data": {"id": "360G-ooR0MeunuL", "title": "The reeV8Ait3o grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 735, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 17, "source_file": 17, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 85, "fields": {"grant_id": "360G-fae3la4oGe", "data": {"id": "360G-fae3la4oGe", "title": "The ohcie3Ki3k grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 144, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 17, "source_file": 17, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 86, "fields": {"grant_id": "360G-EighekohH1", "data": {"id": "360G-EighekohH1", "title": "The Faelio0jah grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 145, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 18, "source_file": 18, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 87, "fields": {"grant_id": "360G-Eiz4Veij8o", "data": {"id": "360G-Eiz4Veij8o", "title": "The IKoesou1ze grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 210, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 18, "source_file": 18, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 88, "fields": {"grant_id": "360G-egh2OxieNg", "data": {"id": "360G-egh2OxieNg", "title": "The iebogh6eiB grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 990, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 18, "source_file": 18, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 89, "fields": {"grant_id": "360G-ieSoa9reef", "data": {"id": "360G-ieSoa9reef", "title": "The eecoh1waiG grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 879, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 18, "source_file": 18, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 90, "fields": {"grant_id": "360G-tahb2paK8c", "data": {"id": "360G-tahb2paK8c", "title": "The xeojae1Ohz grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 338, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 18, "source_file": 18, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 91, "fields": {"grant_id": "360G-oBeisai1ie", "data": {"id": "360G-oBeisai1ie", "title": "The Foo4iefaik grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 553, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 19, "source_file": 19, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 92, "fields": {"grant_id": "360G-faeK3sah6o", "data": {"id": "360G-faeK3sah6o", "title": "The iiw0ieti8U grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 775, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 19, "source_file": 19, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 93, "fields": {"grant_id": "360G-kuBue1Ahli", "data": {"id": "360G-kuBue1Ahli", "title": "The ohfei4leJ5 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 447, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 19, "source_file": 19, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 94, "fields": {"grant_id": "360G-ahFiF8rohd", "data": {"id": "360G-ahFiF8rohd", "title": "The wioSh3EeCh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 267, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 19, "source_file": 19, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 95, "fields": {"grant_id": "360G-ahg9Bee2ec", "data": {"id": "360G-ahg9Bee2ec", "title": "The boothawu5W grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 821, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 19, "source_file": 19, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 96, "fields": {"grant_id": "360G-Fup2heirae", "data": {"id": "360G-Fup2heirae", "title": "The goisieFee3 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 229, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 20, "source_file": 20, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 97, "fields": {"grant_id": "360G-aep6ahng6N", "data": {"id": "360G-aep6ahng6N", "title": "The eerefeeh1K grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 610, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 20, "source_file": 20, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 98, "fields": {"grant_id": "360G-jiethoh5Ae", "data": {"id": "360G-jiethoh5Ae", "title": "The oGhoo5ue1c grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 126, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 20, "source_file": 20, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 99, "fields": {"grant_id": "360G-dauv5Vaih5", "data": {"id": "360G-dauv5Vaih5", "title": "The na2kaiD9ae grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 700, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 20, "source_file": 20, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 100, "fields": {"grant_id": "360G-wos3ooDaig", "data": {"id": "360G-wos3ooDaig", "title": "The Roh5veicei grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 46, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "publisher": 20, "source_file": 20, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 101, "fields": {"grant_id": "360G-kahM5Ooc2u", "data": {"id": "360G-kahM5Ooc2u", "title": "The luumuch5Ir grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 971, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 21, "source_file": 21, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 102, "fields": {"grant_id": "360G-ie1yieThae", "data": {"id": "360G-ie1yieThae", "title": "The iKe8ieng2o grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 237, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 21, "source_file": 21, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 103, "fields": {"grant_id": "360G-aeNeghah3T", "data": {"id": "360G-aeNeghah3T", "title": "The mod6AimieY grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 888, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 21, "source_file": 21, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 104, "fields": {"grant_id": "360G-Ahc5Ooy2ce", "data": {"id": "360G-Ahc5Ooy2ce", "title": "The vueMueN2ci grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 672, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 21, "source_file": 21, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 105, "fields": {"grant_id": "360G-na5Yoo1eTh", "data": {"id": "360G-na5Yoo1eTh", "title": "The oorei2tiSu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 65, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 21, "source_file": 21, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 106, "fields": {"grant_id": "360G-kaath6Cha0", "data": {"id": "360G-kaath6Cha0", "title": "The uLaez7diu1 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 443, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 22, "source_file": 22, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 107, "fields": {"grant_id": "360G-Ooch7gohNi", "data": {"id": "360G-Ooch7gohNi", "title": "The aePhie7Aer grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 802, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 22, "source_file": 22, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 108, "fields": {"grant_id": "360G-Ol5ohroeMi", "data": {"id": "360G-Ol5ohroeMi", "title": "The egaeLeg2co grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 726, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 22, "source_file": 22, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 109, "fields": {"grant_id": "360G-aeNg7zi9sh", "data": {"id": "360G-aeNg7zi9sh", "title": "The aeloh2oz5D grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 293, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 22, "source_file": 22, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 110, "fields": {"grant_id": "360G-eiGoon6ohp", "data": {"id": "360G-eiGoon6ohp", "title": "The jei0Quoepu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 128, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 22, "source_file": 22, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 111, "fields": {"grant_id": "360G-shach4Die8", "data": {"id": "360G-shach4Die8", "title": "The eiChieKa0i grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 227, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 23, "source_file": 23, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 112, "fields": {"grant_id": "360G-mee1ipooHu", "data": {"id": "360G-mee1ipooHu", "title": "The heewaim1Yi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 641, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 23, "source_file": 23, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 113, "fields": {"grant_id": "360G-ohmahGo3Ru", "data": {"id": "360G-ohmahGo3Ru", "title": "The yeyi1Zee7i grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 724, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 23, "source_file": 23, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 114, "fields": {"grant_id": "360G-Fu1iah5To8", "data": {"id": "360G-Fu1iah5To8", "title": "The Iegekiev5s grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 828, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 23, "source_file": 23, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 115, "fields": {"grant_id": "360G-xooGhuuv7f", "data": {"id": "360G-xooGhuuv7f", "title": "The ThieS0Eigh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 621, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 23, "source_file": 23, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 116, "fields": {"grant_id": "360G-iexu4Sohmo", "data": {"id": "360G-iexu4Sohmo", "title": "The ou2OoGhee9 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 964, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 24, "source_file": 24, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 117, "fields": {"grant_id": "360G-fecieBi0ne", "data": {"id": "360G-fecieBi0ne", "title": "The ce1wieKudi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 475, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 24, "source_file": 24, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 118, "fields": {"grant_id": "360G-cayeenoh1C", "data": {"id": "360G-cayeenoh1C", "title": "The eeNeh0it0c grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 943, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 24, "source_file": 24, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 119, "fields": {"grant_id": "360G-jee5Eig6sh", "data": {"id": "360G-jee5Eig6sh", "title": "The yeekeWai7z grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 79, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 24, "source_file": 24, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 120, "fields": {"grant_id": "360G-Iegheev0pi", "data": {"id": "360G-Iegheev0pi", "title": "The Eitai5asae grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 454, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 24, "source_file": 24, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 121, "fields": {"grant_id": "360G-Naur7raech", "data": {"id": "360G-Naur7raech", "title": "The OhD0Moofup grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 480, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 25, "source_file": 25, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 122, "fields": {"grant_id": "360G-Ongaich7ie", "data": {"id": "360G-Ongaich7ie", "title": "The gai3Paethu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 872, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 25, "source_file": 25, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 123, "fields": {"grant_id": "360G-aeKaviep9l", "data": {"id": "360G-aeKaviep9l", "title": "The chaiwe1aeL grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 534, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 25, "source_file": 25, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 124, "fields": {"grant_id": "360G-thieRoo5Ah", "data": {"id": "360G-thieRoo5Ah", "title": "The Vakeic2phe grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 889, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 25, "source_file": 25, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 125, "fields": {"grant_id": "360G-Nohr6Ne5ei", "data": {"id": "360G-Nohr6Ne5ei", "title": "The uGh5esh6Sh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 87, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 25, "source_file": 25, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 126, "fields": {"grant_id": "360G-ieghohc9uW", "data": {"id": "360G-ieghohc9uW", "title": "The te3Jua8bi8 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 220, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 26, "source_file": 26, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 127, "fields": {"grant_id": "360G-Pahwai9bai", "data": {"id": "360G-Pahwai9bai", "title": "The Eech0Ouph4 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 265, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 26, "source_file": 26, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 128, "fields": {"grant_id": "360G-Quah4yi8ee", "data": {"id": "360G-Quah4yi8ee", "title": "The ooba7Thahv grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 55, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 26, "source_file": 26, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 129, "fields": {"grant_id": "360G-aiqu3OhFei", "data": {"id": "360G-aiqu3OhFei", "title": "The zoaQuau7ie grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 122, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 26, "source_file": 26, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 130, "fields": {"grant_id": "360G-thaeche0Ah", "data": {"id": "360G-thaeche0Ah", "title": "The oy1Apohng9 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 675, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 26, "source_file": 26, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 131, "fields": {"grant_id": "360G-Aex5Fachou", "data": {"id": "360G-Aex5Fachou", "title": "The thieSh0zu8 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 115, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 27, "source_file": 27, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 132, "fields": {"grant_id": "360G-io7taiR4ee", "data": {"id": "360G-io7taiR4ee", "title": "The uiza7Xeeyi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 877, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 27, "source_file": 27, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 133, "fields": {"grant_id": "360G-EeLoh8mahd", "data": {"id": "360G-EeLoh8mahd", "title": "The iCh4ohCei3 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 660, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 27, "source_file": 27, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 134, "fields": {"grant_id": "360G-ooR0MeunuL", "data": {"id": "360G-ooR0MeunuL", "title": "The reeV8Ait3o grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 735, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 27, "source_file": 27, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 135, "fields": {"grant_id": "360G-fae3la4oGe", "data": {"id": "360G-fae3la4oGe", "title": "The ohcie3Ki3k grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 144, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 27, "source_file": 27, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 136, "fields": {"grant_id": "360G-EighekohH1", "data": {"id": "360G-EighekohH1", "title": "The Faelio0jah grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 145, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 28, "source_file": 28, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 137, "fields": {"grant_id": "360G-Eiz4Veij8o", "data": {"id": "360G-Eiz4Veij8o", "title": "The IKoesou1ze grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 210, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 28, "source_file": 28, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 138, "fields": {"grant_id": "360G-egh2OxieNg", "data": {"id": "360G-egh2OxieNg", "title": "The iebogh6eiB grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 990, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 28, "source_file": 28, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 139, "fields": {"grant_id": "360G-ieSoa9reef", "data": {"id": "360G-ieSoa9reef", "title": "The eecoh1waiG grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 879, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 28, "source_file": 28, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 140, "fields": {"grant_id": "360G-tahb2paK8c", "data": {"id": "360G-tahb2paK8c", "title": "The xeojae1Ohz grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 338, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 28, "source_file": 28, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 141, "fields": {"grant_id": "360G-oBeisai1ie", "data": {"id": "360G-oBeisai1ie", "title": "The Foo4iefaik grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 553, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 29, "source_file": 29, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 142, "fields": {"grant_id": "360G-faeK3sah6o", "data": {"id": "360G-faeK3sah6o", "title": "The iiw0ieti8U grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 775, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 29, "source_file": 29, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 143, "fields": {"grant_id": "360G-kuBue1Ahli", "data": {"id": "360G-kuBue1Ahli", "title": "The ohfei4leJ5 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 447, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 29, "source_file": 29, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 144, "fields": {"grant_id": "360G-ahFiF8rohd", "data": {"id": "360G-ahFiF8rohd", "title": "The wioSh3EeCh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 267, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 29, "source_file": 29, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 145, "fields": {"grant_id": "360G-ahg9Bee2ec", "data": {"id": "360G-ahg9Bee2ec", "title": "The boothawu5W grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 821, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 29, "source_file": 29, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 146, "fields": {"grant_id": "360G-Fup2heirae", "data": {"id": "360G-Fup2heirae", "title": "The goisieFee3 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 229, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 30, "source_file": 30, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 147, "fields": {"grant_id": "360G-aep6ahng6N", "data": {"id": "360G-aep6ahng6N", "title": "The eerefeeh1K grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 610, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 30, "source_file": 30, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 148, "fields": {"grant_id": "360G-jiethoh5Ae", "data": {"id": "360G-jiethoh5Ae", "title": "The oGhoo5ue1c grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 126, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 30, "source_file": 30, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 149, "fields": {"grant_id": "360G-dauv5Vaih5", "data": {"id": "360G-dauv5Vaih5", "title": "The na2kaiD9ae grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 700, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 30, "source_file": 30, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 150, "fields": {"grant_id": "360G-wos3ooDaig", "data": {"id": "360G-wos3ooDaig", "title": "The Roh5veicei grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 46, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "publisher": 30, "source_file": 30, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 151, "fields": {"grant_id": "360G-kahM5Ooc2u", "data": {"id": "360G-kahM5Ooc2u", "title": "The luumuch5Ir grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 971, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 31, "source_file": 31, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 152, "fields": {"grant_id": "360G-ie1yieThae", "data": {"id": "360G-ie1yieThae", "title": "The iKe8ieng2o grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 237, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 31, "source_file": 31, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 153, "fields": {"grant_id": "360G-aeNeghah3T", "data": {"id": "360G-aeNeghah3T", "title": "The mod6AimieY grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 888, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 31, "source_file": 31, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 154, "fields": {"grant_id": "360G-Ahc5Ooy2ce", "data": {"id": "360G-Ahc5Ooy2ce", "title": "The vueMueN2ci grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 672, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 31, "source_file": 31, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 155, "fields": {"grant_id": "360G-na5Yoo1eTh", "data": {"id": "360G-na5Yoo1eTh", "title": "The oorei2tiSu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 65, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 31, "source_file": 31, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 156, "fields": {"grant_id": "360G-kaath6Cha0", "data": {"id": "360G-kaath6Cha0", "title": "The uLaez7diu1 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 443, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 32, "source_file": 32, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 157, "fields": {"grant_id": "360G-Ooch7gohNi", "data": {"id": "360G-Ooch7gohNi", "title": "The aePhie7Aer grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 802, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 32, "source_file": 32, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 158, "fields": {"grant_id": "360G-Ol5ohroeMi", "data": {"id": "360G-Ol5ohroeMi", "title": "The egaeLeg2co grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 726, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 32, "source_file": 32, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 159, "fields": {"grant_id": "360G-aeNg7zi9sh", "data": {"id": "360G-aeNg7zi9sh", "title": "The aeloh2oz5D grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 293, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 32, "source_file": 32, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 160, "fields": {"grant_id": "360G-eiGoon6ohp", "data": {"id": "360G-eiGoon6ohp", "title": "The jei0Quoepu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 128, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 32, "source_file": 32, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 161, "fields": {"grant_id": "360G-shach4Die8", "data": {"id": "360G-shach4Die8", "title": "The eiChieKa0i grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 227, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 33, "source_file": 33, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 162, "fields": {"grant_id": "360G-mee1ipooHu", "data": {"id": "360G-mee1ipooHu", "title": "The heewaim1Yi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 641, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 33, "source_file": 33, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 163, "fields": {"grant_id": "360G-ohmahGo3Ru", "data": {"id": "360G-ohmahGo3Ru", "title": "The yeyi1Zee7i grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 724, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 33, "source_file": 33, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 164, "fields": {"grant_id": "360G-Fu1iah5To8", "data": {"id": "360G-Fu1iah5To8", "title": "The Iegekiev5s grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 828, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 33, "source_file": 33, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 165, "fields": {"grant_id": "360G-xooGhuuv7f", "data": {"id": "360G-xooGhuuv7f", "title": "The ThieS0Eigh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 621, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 33, "source_file": 33, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 166, "fields": {"grant_id": "360G-iexu4Sohmo", "data": {"id": "360G-iexu4Sohmo", "title": "The ou2OoGhee9 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 964, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 34, "source_file": 34, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 167, "fields": {"grant_id": "360G-fecieBi0ne", "data": {"id": "360G-fecieBi0ne", "title": "The ce1wieKudi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 475, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 34, "source_file": 34, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 168, "fields": {"grant_id": "360G-cayeenoh1C", "data": {"id": "360G-cayeenoh1C", "title": "The eeNeh0it0c grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 943, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 34, "source_file": 34, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 169, "fields": {"grant_id": "360G-jee5Eig6sh", "data": {"id": "360G-jee5Eig6sh", "title": "The yeekeWai7z grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 79, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 34, "source_file": 34, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 170, "fields": {"grant_id": "360G-Iegheev0pi", "data": {"id": "360G-Iegheev0pi", "title": "The Eitai5asae grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 454, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 34, "source_file": 34, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 171, "fields": {"grant_id": "360G-Naur7raech", "data": {"id": "360G-Naur7raech", "title": "The OhD0Moofup grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 480, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 35, "source_file": 35, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 172, "fields": {"grant_id": "360G-Ongaich7ie", "data": {"id": "360G-Ongaich7ie", "title": "The gai3Paethu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 872, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 35, "source_file": 35, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 173, "fields": {"grant_id": "360G-aeKaviep9l", "data": {"id": "360G-aeKaviep9l", "title": "The chaiwe1aeL grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 534, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 35, "source_file": 35, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 174, "fields": {"grant_id": "360G-thieRoo5Ah", "data": {"id": "360G-thieRoo5Ah", "title": "The Vakeic2phe grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 889, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 35, "source_file": 35, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 175, "fields": {"grant_id": "360G-Nohr6Ne5ei", "data": {"id": "360G-Nohr6Ne5ei", "title": "The uGh5esh6Sh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 87, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 35, "source_file": 35, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 176, "fields": {"grant_id": "360G-ieghohc9uW", "data": {"id": "360G-ieghohc9uW", "title": "The te3Jua8bi8 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 220, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 36, "source_file": 36, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 177, "fields": {"grant_id": "360G-Pahwai9bai", "data": {"id": "360G-Pahwai9bai", "title": "The Eech0Ouph4 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 265, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 36, "source_file": 36, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 178, "fields": {"grant_id": "360G-Quah4yi8ee", "data": {"id": "360G-Quah4yi8ee", "title": "The ooba7Thahv grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 55, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 36, "source_file": 36, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 179, "fields": {"grant_id": "360G-aiqu3OhFei", "data": {"id": "360G-aiqu3OhFei", "title": "The zoaQuau7ie grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 122, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 36, "source_file": 36, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 180, "fields": {"grant_id": "360G-thaeche0Ah", "data": {"id": "360G-thaeche0Ah", "title": "The oy1Apohng9 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 675, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 36, "source_file": 36, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 181, "fields": {"grant_id": "360G-Aex5Fachou", "data": {"id": "360G-Aex5Fachou", "title": "The thieSh0zu8 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 115, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 37, "source_file": 37, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 182, "fields": {"grant_id": "360G-io7taiR4ee", "data": {"id": "360G-io7taiR4ee", "title": "The uiza7Xeeyi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 877, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 37, "source_file": 37, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 183, "fields": {"grant_id": "360G-EeLoh8mahd", "data": {"id": "360G-EeLoh8mahd", "title": "The iCh4ohCei3 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 660, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 37, "source_file": 37, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 184, "fields": {"grant_id": "360G-ooR0MeunuL", "data": {"id": "360G-ooR0MeunuL", "title": "The reeV8Ait3o grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 735, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 37, "source_file": 37, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 185, "fields": {"grant_id": "360G-fae3la4oGe", "data": {"id": "360G-fae3la4oGe", "title": "The ohcie3Ki3k grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 144, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 37, "source_file": 37, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 186, "fields": {"grant_id": "360G-EighekohH1", "data": {"id": "360G-EighekohH1", "title": "The Faelio0jah grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 145, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 38, "source_file": 38, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 187, "fields": {"grant_id": "360G-Eiz4Veij8o", "data": {"id": "360G-Eiz4Veij8o", "title": "The IKoesou1ze grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 210, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 38, "source_file": 38, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 188, "fields": {"grant_id": "360G-egh2OxieNg", "data": {"id": "360G-egh2OxieNg", "title": "The iebogh6eiB grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 990, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 38, "source_file": 38, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 189, "fields": {"grant_id": "360G-ieSoa9reef", "data": {"id": "360G-ieSoa9reef", "title": "The eecoh1waiG grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 879, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 38, "source_file": 38, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 190, "fields": {"grant_id": "360G-tahb2paK8c", "data": {"id": "360G-tahb2paK8c", "title": "The xeojae1Ohz grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 338, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 38, "source_file": 38, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 191, "fields": {"grant_id": "360G-oBeisai1ie", "data": {"id": "360G-oBeisai1ie", "title": "The Foo4iefaik grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 553, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 39, "source_file": 39, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 192, "fields": {"grant_id": "360G-faeK3sah6o", "data": {"id": "360G-faeK3sah6o", "title": "The iiw0ieti8U grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 775, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 39, "source_file": 39, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 193, "fields": {"grant_id": "360G-kuBue1Ahli", "data": {"id": "360G-kuBue1Ahli", "title": "The ohfei4leJ5 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 447, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 39, "source_file": 39, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 194, "fields": {"grant_id": "360G-ahFiF8rohd", "data": {"id": "360G-ahFiF8rohd", "title": "The wioSh3EeCh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 267, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 39, "source_file": 39, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 195, "fields": {"grant_id": "360G-ahg9Bee2ec", "data": {"id": "360G-ahg9Bee2ec", "title": "The boothawu5W grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 821, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 39, "source_file": 39, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 196, "fields": {"grant_id": "360G-Fup2heirae", "data": {"id": "360G-Fup2heirae", "title": "The goisieFee3 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 229, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 40, "source_file": 40, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 197, "fields": {"grant_id": "360G-aep6ahng6N", "data": {"id": "360G-aep6ahng6N", "title": "The eerefeeh1K grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 610, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 40, "source_file": 40, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 198, "fields": {"grant_id": "360G-jiethoh5Ae", "data": {"id": "360G-jiethoh5Ae", "title": "The oGhoo5ue1c grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 126, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 40, "source_file": 40, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 199, "fields": {"grant_id": "360G-dauv5Vaih5", "data": {"id": "360G-dauv5Vaih5", "title": "The na2kaiD9ae grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 700, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 40, "source_file": 40, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 200, "fields": {"grant_id": "360G-wos3ooDaig", "data": {"id": "360G-wos3ooDaig", "title": "The Roh5veicei grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 46, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "publisher": 40, "source_file": 40, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "additional_data.orginfocache", "pk": 1, "fields": {"org_id": "360G-example-a", "org_ids": "[\"360G-example-a\", \"360G-example-nonprimary\"]", "org_type": "ccew", "fetched": "2025-08-13T13:52:23.586Z", "data": {}}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "db", "model": "getterrun"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "db", "model": "publisher"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "db", "model": "sourcefile"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "db", "model": "grant"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "db", "model": "status"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "db", "model": "latest"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "db", "model": "funder"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "db", "model": "recipient"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "additional_data", "model": "orginfocache"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "additional_data", "model": "nspl"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "additional_data", "model": "geolookup"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "additional_data", "model": "tsgorgtype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "additional_data", "model": "geocodename"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "additional_data", "model": "codelistcode"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "additional_data", "model": "imdwardlookup"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "monitoring", "model": "monitoringsnapshot"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "monitoring", "model": "datasetmetricsrecord"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "monitoring", "model": "sourcefilemetricsrecord"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "monitoring", "model": "publishermetricsrecord"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "monitoring", "model": "fundermetricsrecord"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "admin", "model": "logentry"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "auth", "model": "permission"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "auth", "model": "group"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "auth", "model": "user"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "contenttypes", "model": "contenttype"}}, {"model": "contenttypes.contenttype", "fields": {"app_label": "sessions", "model": "session"}}, {"model": "auth.permission", "fields": {"name": "Can add getter run", "content_type": ["db", "getterrun"], "codename": "add_getterrun"}}, {"model": "auth.permission", "fields": {"name": "Can change getter run", "content_type": ["db", "getterrun"], "codename": "change_getterrun"}}, {"model": "auth.permission", "fields": {"name": "Can delete getter run", "content_type": ["db", "getterrun"], "codename": "delete_getterrun"}}, {"model": "auth.permission", "fields": {"name": "Can view getter run", "content_type": ["db", "getterrun"], "codename": "view_getterrun"}}, {"model": "auth.permission", "fields": {"name": "Can add publisher", "content_type": ["db", "publisher"], "codename": "add_publisher"}}, {"model": "auth.permission", "fields": {"name": "Can change publisher", "content_type": ["db", "publisher"], "codename": "change_publisher"}}, {"model": "auth.permission", "fields": {"name": "Can delete publisher", "content_type": ["db", "publisher"], "codename": "delete_publisher"}}, {"model": "auth.permission", "fields": {"name": "Can view publisher", "content_type": ["db", "publisher"], "codename": "view_publisher"}}, {"model": "auth.permission", "fields": {"name": "Can add source file", "content_type": ["db", "sourcefile"], "codename": "add_sourcefile"}}, {"model": "auth.permission", "fields": {"name": "Can change source file", "content_type": ["db", "sourcefile"], "codename": "change_sourcefile"}}, {"model": "auth.permission", "fields": {"name": "Can delete source file", "content_type": ["db", "sourcefile"], "codename": "delete_sourcefile"}}, {"model": "auth.permission", "fields": {"name": "Can view source file", "content_type": ["db", "sourcefile"], "codename": "view_sourcefile"}}, {"model": "auth.permission", "fields": {"name": "Can add grant", "content_type": ["db", "grant"], "codename": "add_grant"}}, {"model": "auth.permission", "fields": {"name": "Can change grant", "content_type": ["db", "grant"], "codename": "change_grant"}}, {"model": "auth.permission", "fields": {"name": "Can delete grant", "content_type": ["db", "grant"], "codename": "delete_grant"}}, {"model": "auth.permission", "fields": {"name": "Can view grant", "content_type": ["db", "grant"], "codename": "view_grant"}}, {"model": "auth.permission", "fields": {"name": "Can add status", "content_type": ["db", "status"], "codename": "add_status"}}, {"model": "auth.permission", "fields": {"name": "Can change status", "content_type": ["db", "status"], "codename": "change_status"}}, {"model": "auth.permission", "fields": {"name": "Can delete status", "content_type": ["db", "status"], "codename": "delete_status"}}, {"model": "auth.permission", "fields": {"name": "Can view status", "content_type": ["db", "status"], "codename": "view_status"}}, {"model": "auth.permission", "fields": {"name": "Can add latest", "content_type": ["db", "latest"], "codename": "add_latest"}}, {"model": "auth.permission", "fields": {"name": "Can change latest", "content_type": ["db", "latest"], "codename": "change_latest"}}, {"model": "auth.permission", "fields": {"name": "Can delete latest", "content_type": ["db", "latest"], "codename": "delete_latest"}}, {"model": "auth.permission", "fields": {"name": "Can view latest", "content_type": ["db", "latest"], "codename": "view_latest"}}, {"model": "auth.permission", "fields": {"name": "Can add funder", "content_type": ["db", "funder"], "codename": "add_funder"}}, {"model": "auth.permission", "fields": {"name": "Can change funder", "content_type": ["db", "funder"], "codename": "change_funder"}}, {"model": "auth.permission", "fields": {"name": "Can delete funder", "content_type": ["db", "funder"], "codename": "delete_funder"}}, {"model": "auth.permission", "fields": {"name": "Can view funder", "content_type": ["db", "funder"], "codename": "view_funder"}}, {"model": "auth.permission", "fields": {"name": "Can add recipient", "content_type": ["db", "recipient"], "codename": "add_recipient"}}, {"model": "auth.permission", "fields": {"name": "Can change recipient", "content_type": ["db", "recipient"], "codename": "change_recipient"}}, {"model": "auth.permission", "fields": {"name": "Can delete recipient", "content_type": ["db", "recipient"], "codename": "delete_recipient"}}, {"model": "auth.permission", "fields": {"name": "Can view recipient", "content_type": ["db", "recipient"], "codename": "view_recipient"}}, {"model": "auth.permission", "fields": {"name": "Can add org info cache", "content_type": ["additional_data", "orginfocache"], "codename": "add_orginfocache"}}, {"model": "auth.permission", "fields": {"name": "Can change org info cache", "content_type": ["additional_data", "orginfocache"], "codename": "change_orginfocache"}}, {"model": "auth.permission", "fields": {"name": "Can delete org info cache", "content_type": ["additional_data", "orginfocache"], "codename": "delete_orginfocache"}}, {"model": "auth.permission", "fields": {"name": "Can view org info cache", "content_type": ["additional_data", "orginfocache"], "codename": "view_orginfocache"}}, {"model": "auth.permission", "fields": {"name": "Can add nspl", "content_type": ["additional_data", "nspl"], "codename": "add_nspl"}}, {"model": "auth.permission", "fields": {"name": "Can change nspl", "content_type": ["additional_data", "nspl"], "codename": "change_nspl"}}, {"model": "auth.permission", "fields": {"name": "Can delete nspl", "content_type": ["additional_data", "nspl"], "codename": "delete_nspl"}}, {"model": "auth.permission", "fields": {"name": "Can view nspl", "content_type": ["additional_data", "nspl"], "codename": "view_nspl"}}, {"model": "auth.permission", "fields": {"name": "Can add geo lookup", "content_type": ["additional_data", "geolookup"], "codename": "add_geolookup"}}, {"model": "auth.permission", "fields": {"name": "Can change geo lookup", "content_type": ["additional_data", "geolookup"], "codename": "change_geolookup"}}, {"model": "auth.permission", "fields": {"name": "Can delete geo lookup", "content_type": ["additional_data", "geolookup"], "codename": "delete_geolookup"}}, {"model": "auth.permission", "fields": {"name": "Can view geo lookup", "content_type": ["additional_data", "geolookup"], "codename": "view_geolookup"}}, {"model": "auth.permission", "fields": {"name": "Can add ThreeSixtyGiving Org Type", "content_type": ["additional_data", "tsgorgtype"], "codename": "add_tsgorgtype"}}, {"model": "auth.permission", "fields": {"name": "Can change ThreeSixtyGiving Org Type", "content_type": ["additional_data", "tsgorgtype"], "codename": "change_tsgorgtype"}}, {"model": "auth.permission", "fields": {"name": "Can delete ThreeSixtyGiving Org Type", "content_type": ["additional_data", "tsgorgtype"], "codename": "delete_tsgorgtype"}}, {"model": "auth.permission", "fields": {"name": "Can view ThreeSixtyGiving Org Type", "content_type": ["additional_data", "tsgorgtype"], "codename": "view_tsgorgtype"}}, {"model": "auth.permission", "fields": {"name": "Can add geo code name", "content_type": ["additional_data", "geocodename"], "codename": "add_geocodename"}}, {"model": "auth.permission", "fields": {"name": "Can change geo code name", "content_type": ["additional_data", "geocodename"], "codename": "change_geocodename"}}, {"model": "auth.permission", "fields": {"name": "Can delete geo code name", "content_type": ["additional_data", "geocodename"], "codename": "delete_geocodename"}}, {"model": "auth.permission", "fields": {"name": "Can view geo code name", "content_type": ["additional_data", "geocodename"], "codename": "view_geocodename"}}, {"model": "auth.permission", "fields": {"name": "Can add codelist code", "content_type": ["additional_data", "codelistcode"], "codename": "add_codelistcode"}}, {"model": "auth.permission", "fields": {"name": "Can change codelist code", "content_type": ["additional_data", "codelistcode"], "codename": "change_codelistcode"}}, {"model": "auth.permission", "fields": {"name": "Can delete codelist code", "content_type": ["additional_data", "codelistcode"], "codename": "delete_codelistcode"}}, {"model": "auth.permission", "fields": {"name": "Can view codelist code", "content_type": ["additional_data", "codelistcode"], "codename": "view_codelistcode"}}, {"model": "auth.permission", "fields": {"name": "Can add imd ward lookup", "content_type": ["additional_data", "imdwardlookup"], "codename": "add_imdwardlookup"}}, {"model": "auth.permission", "fields": {"name": "Can change imd ward lookup", "content_type": ["additional_data", "imdwardlookup"], "codename": "change_imdwardlookup"}}, {"model": "auth.permission", "fields": {"name": "Can delete imd ward lookup", "content_type": ["additional_data", "imdwardlookup"], "codename": "delete_imdwardlookup"}}, {"model": "auth.permission", "fields": {"name": "Can view imd ward lookup", "content_type": ["additional_data", "imdwardlookup"], "codename": "view_imdwardlookup"}}, {"model": "auth.permission", "fields": {"name": "Can add monitoring snapshot", "content_type": ["monitoring", "monitoringsnapshot"], "codename": "add_monitoringsnapshot"}}, {"model": "auth.permission", "fields": {"name": "Can change monitoring snapshot", "content_type": ["monitoring", "monitoringsnapshot"], "codename": "change_monitoringsnapshot"}}, {"model": "auth.permission", "fields": {"name": "Can delete monitoring snapshot", "content_type": ["monitoring", "monitoringsnapshot"], "codename": "delete_monitoringsnapshot"}}, {"model": "auth.permission", "fields": {"name": "Can view monitoring snapshot", "content_type": ["monitoring", "monitoringsnapshot"], "codename": "view_monitoringsnapshot"}}, {"model": "auth.permission", "fields": {"name": "Can add dataset metrics record", "content_type": ["monitoring", "datasetmetricsrecord"], "codename": "add_datasetmetricsrecord"}}, {"model": "auth.permission", "fields": {"name": "Can change dataset metrics record", "content_type": ["monitoring", "datasetmetricsrecord"], "codename": "change_datasetmetricsrecord"}}, {"model": "auth.permission", "fields": {"name": "Can delete dataset metrics record", "content_type": ["monitoring", "datasetmetricsrecord"], "codename": "delete_datasetmetricsrecord"}}, {"model": "auth.permission", "fields": {"name": "Can view dataset metrics record", "content_type": ["monitoring", "datasetmetricsrecord"], "codename": "view_datasetmetricsrecord"}}, {"model": "auth.permission", "fields": {"name": "Can add source file metrics record", "content_type": ["monitoring", "sourcefilemetricsrecord"], "codename": "add_sourcefilemetricsrecord"}}, {"model": "auth.permission", "fields": {"name": "Can change source file metrics record", "content_type": ["monitoring", "sourcefilemetricsrecord"], "codename": "change_sourcefilemetricsrecord"}}, {"model": "auth.permission", "fields": {"name": "Can delete source file metrics record", "content_type": ["monitoring", "sourcefilemetricsrecord"], "codename": "delete_sourcefilemetricsrecord"}}, {"model": "auth.permission", "fields": {"name": "Can view source file metrics record", "content_type": ["monitoring", "sourcefilemetricsrecord"], "codename": "view_sourcefilemetricsrecord"}}, {"model": "auth.permission", "fields": {"name": "Can add publisher metrics record", "content_type": ["monitoring", "publishermetricsrecord"], "codename": "add_publishermetricsrecord"}}, {"model": "auth.permission", "fields": {"name": "Can change publisher metrics record", "content_type": ["monitoring", "publishermetricsrecord"], "codename": "change_publishermetricsrecord"}}, {"model": "auth.permission", "fields": {"name": "Can delete publisher metrics record", "content_type": ["monitoring", "publishermetricsrecord"], "codename": "delete_publishermetricsrecord"}}, {"model": "auth.permission", "fields": {"name": "Can view publisher metrics record", "content_type": ["monitoring", "publishermetricsrecord"], "codename": "view_publishermetricsrecord"}}, {"model": "auth.permission", "fields": {"name": "Can add funder metrics record", "content_type": ["monitoring", "fundermetricsrecord"], "codename": "add_fundermetricsrecord"}}, {"model": "auth.permission", "fields": {"name": "Can change funder metrics record", "content_type": ["monitoring", "fundermetricsrecord"], "codename": "change_fundermetricsrecord"}}, {"model": "auth.permission", "fields": {"name": "Can delete funder metrics record", "content_type": ["monitoring", "fundermetricsrecord"], "codename": "delete_fundermetricsrecord"}}, {"model": "auth.permission", "fields": {"name": "Can view funder metrics record", "content_type": ["monitoring", "fundermetricsrecord"], "codename": "view_fundermetricsrecord"}}, {"model": "auth.permission", "fields": {"name": "Can add log entry", "content_type": ["admin", "logentry"], "codename": "add_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can change log entry", "content_type": ["admin", "logentry"], "codename": "change_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can delete log entry", "content_type": ["admin", "logentry"], "codename": "delete_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can view log entry", "content_type": ["admin", "logentry"], "codename": "view_logentry"}}, {"model": "auth.permission", "fields": {"name": "Can add permission", "content_type": ["auth", "permission"], "codename": "add_permission"}}, {"model": "auth.permission", "fields": {"name": "Can change permission", "content_type": ["auth", "permission"], "codename": "change_permission"}}, {"model": "auth.permission", "fields": {"name": "Can delete permission", "content_type": ["auth", "permission"], "codename": "delete_permission"}}, {"model": "auth.permission", "fields": {"name": "Can view permission", "content_type": ["auth", "permission"], "codename": "view_permission"}}, {"model": "auth.permission", "fields": {"name": "Can add group", "content_type": ["auth", "group"], "codename": "add_group"}}, {"model": "auth.permission", "fields": {"name": "Can change group", "content_type": ["auth", "group"], "codename": "change_group"}}, {"model": "auth.permission", "fields": {"name": "Can delete group", "content_type": ["auth", "group"], "codename": "delete_group"}}, {"model": "auth.permission", "fields": {"name": "Can view group", "content_type": ["auth", "group"], "codename": "view_group"}}, {"model": "auth.permission", "fields": {"name": "Can add user", "content_type": ["auth", "user"], "codename": "add_user"}}, {"model": "auth.permission", "fields": {"name": "Can change user", "content_type": ["auth", "user"], "codename": "change_user"}}, {"model": "auth.permission", "fields": {"name": "Can delete user", "content_type": ["auth", "user"], "codename": "delete_user"}}, {"model": "auth.permission", "fields": {"name": "Can view user", "content_type": ["auth", "user"], "codename": "view_user"}}, {"model": "auth.permission", "fields": {"name": "Can add content type", "content_type": ["contenttypes", "contenttype"], "codename": "add_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can change content type", "content_type": ["contenttypes", "contenttype"], "codename": "change_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can delete content type", "content_type": ["contenttypes", "contenttype"], "codename": "delete_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can view content type", "content_type": ["contenttypes", "contenttype"], "codename": "view_contenttype"}}, {"model": "auth.permission", "fields": {"name": "Can add session", "content_type": ["sessions", "session"], "codename": "add_session"}}, {"model": "auth.permission", "fields": {"name": "Can change session", "content_type": ["sessions", "session"], "codename": "change_session"}}, {"model": "auth.permission", "fields": {"name": "Can delete session", "content_type": ["sessions", "session"], "codename": "delete_session"}}, {"model": "auth.permission", "fields": {"name": "Can view session", "content_type": ["sessions", "session"], "codename": "view_session"}}]
\ No newline at end of file
+[{"model": "db.latest", "pk": 4, "fields": {"series": "PREVIOUS", "updated": "2023-10-27T16:22:31.875Z"}}, {"model": "db.latest", "pk": 5, "fields": {"series": "CURRENT", "updated": "2023-10-27T16:22:35.820Z"}}, {"model": "db.getterrun", "pk": 1, "fields": {"datetime": "2023-10-26T16:23:30.632Z", "archived": false}}, {"model": "db.getterrun", "pk": 2, "fields": {"datetime": "2023-10-25T16:23:30.635Z", "archived": false}}, {"model": "db.getterrun", "pk": 3, "fields": {"datetime": "2023-10-24T16:23:30.637Z", "archived": false}}, {"model": "db.getterrun", "pk": 4, "fields": {"datetime": "2023-10-23T16:23:30.638Z", "archived": false}}, {"model": "db.sourcefile", "pk": 1, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The publisher", "org_id": "GB-CHC-9000000", "prefix": "360g-aphed1Ohd8", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Oow2Nohcei", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Oow2Nohcei.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 971, "min_amount": 65, "total_amount": 2833, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Oow2Nohcei.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 2, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The xoidi9Aes8 publisher", "org_id": "GB-CHC-9000001", "prefix": "360g-eeth0Kaiqu", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Aebaepi3wi", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Aebaepi3wi.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 802, "min_amount": 128, "total_amount": 2392, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Aebaepi3wi.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 3, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The phihith7Th publisher", "org_id": "GB-CHC-9000002", "prefix": "360g-Ahtahs5vaj", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Thool7dohT", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Thool7dohT.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 828, "min_amount": 227, "total_amount": 3041, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Thool7dohT.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 4, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Uzee4aebah publisher", "org_id": "GB-CHC-9000003", "prefix": "360g-Pheiquohr3", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "oon2iR4eil", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/oon2iR4eil.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 964, "min_amount": 79, "total_amount": 2915, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/oon2iR4eil.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 5, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Tha2eechei publisher", "org_id": "GB-CHC-9000004", "prefix": "360g-Eikie9coo5", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "thoGh8aing", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/thoGh8aing.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 889, "min_amount": 87, "total_amount": 2862, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/thoGh8aing.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 6, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The hoox7AbieB publisher", "org_id": "GB-CHC-9000005", "prefix": "360g-Jae4ceokob", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Ukohleihi3", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Ukohleihi3.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 675, "min_amount": 55, "total_amount": 1337, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Ukohleihi3.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 7, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The UaPahr0eix publisher", "org_id": "GB-CHC-9000006", "prefix": "360g-sho1Loayai", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "ahpoY9eema", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/ahpoY9eema.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 877, "min_amount": 115, "total_amount": 2531, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/ahpoY9eema.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 8, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ieShe7au8Y publisher", "org_id": "GB-CHC-9000007", "prefix": "360g-ailiitei1O", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Jair4ooha0", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Jair4ooha0.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 990, "min_amount": 145, "total_amount": 2562, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Jair4ooha0.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 9, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ohy6ohna0C publisher", "org_id": "GB-CHC-9000008", "prefix": "360g-INg3omaiNe", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "uH0Ay2kein", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/uH0Ay2kein.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 821, "min_amount": 267, "total_amount": 2863, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/uH0Ay2kein.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 10, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Heex1ieKu0 publisher", "org_id": "GB-CHC-9000009", "prefix": "360g-Ap0inaap5e", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "duLioc6uci", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/duLioc6uci.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 1, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 700, "min_amount": 46, "total_amount": 1711, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/duLioc6uci.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 11, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The publisher", "org_id": "GB-CHC-9000000", "prefix": "360g-aphed1Ohd8", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Oow2Nohcei", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Oow2Nohcei.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 971, "min_amount": 65, "total_amount": 2833, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Oow2Nohcei.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 12, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The xoidi9Aes8 publisher", "org_id": "GB-CHC-9000001", "prefix": "360g-eeth0Kaiqu", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Aebaepi3wi", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Aebaepi3wi.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 802, "min_amount": 128, "total_amount": 2392, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Aebaepi3wi.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 13, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The phihith7Th publisher", "org_id": "GB-CHC-9000002", "prefix": "360g-Ahtahs5vaj", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Thool7dohT", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Thool7dohT.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 828, "min_amount": 227, "total_amount": 3041, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Thool7dohT.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 14, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Uzee4aebah publisher", "org_id": "GB-CHC-9000003", "prefix": "360g-Pheiquohr3", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "oon2iR4eil", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/oon2iR4eil.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 964, "min_amount": 79, "total_amount": 2915, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/oon2iR4eil.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 15, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Tha2eechei publisher", "org_id": "GB-CHC-9000004", "prefix": "360g-Eikie9coo5", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "thoGh8aing", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/thoGh8aing.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 889, "min_amount": 87, "total_amount": 2862, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/thoGh8aing.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 16, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The hoox7AbieB publisher", "org_id": "GB-CHC-9000005", "prefix": "360g-Jae4ceokob", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Ukohleihi3", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Ukohleihi3.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 675, "min_amount": 55, "total_amount": 1337, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Ukohleihi3.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 17, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The UaPahr0eix publisher", "org_id": "GB-CHC-9000006", "prefix": "360g-sho1Loayai", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "ahpoY9eema", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/ahpoY9eema.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 877, "min_amount": 115, "total_amount": 2531, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/ahpoY9eema.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 18, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ieShe7au8Y publisher", "org_id": "GB-CHC-9000007", "prefix": "360g-ailiitei1O", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Jair4ooha0", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Jair4ooha0.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 990, "min_amount": 145, "total_amount": 2562, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Jair4ooha0.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 19, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ohy6ohna0C publisher", "org_id": "GB-CHC-9000008", "prefix": "360g-INg3omaiNe", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "uH0Ay2kein", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/uH0Ay2kein.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 821, "min_amount": 267, "total_amount": 2863, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/uH0Ay2kein.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 20, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Heex1ieKu0 publisher", "org_id": "GB-CHC-9000009", "prefix": "360g-Ap0inaap5e", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "duLioc6uci", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/duLioc6uci.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 2, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 700, "min_amount": 46, "total_amount": 1711, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/duLioc6uci.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": []}}, {"model": "db.sourcefile", "pk": 21, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The publisher", "org_id": "GB-CHC-9000000", "prefix": "360g-aphed1Ohd8", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Oow2Nohcei", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Oow2Nohcei.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 971, "min_amount": 65, "total_amount": 2833, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Oow2Nohcei.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 22, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The xoidi9Aes8 publisher", "org_id": "GB-CHC-9000001", "prefix": "360g-eeth0Kaiqu", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Aebaepi3wi", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Aebaepi3wi.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 802, "min_amount": 128, "total_amount": 2392, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Aebaepi3wi.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 23, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The phihith7Th publisher", "org_id": "GB-CHC-9000002", "prefix": "360g-Ahtahs5vaj", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Thool7dohT", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Thool7dohT.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 828, "min_amount": 227, "total_amount": 3041, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Thool7dohT.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 24, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Uzee4aebah publisher", "org_id": "GB-CHC-9000003", "prefix": "360g-Pheiquohr3", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "oon2iR4eil", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/oon2iR4eil.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 964, "min_amount": 79, "total_amount": 2915, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/oon2iR4eil.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 25, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Tha2eechei publisher", "org_id": "GB-CHC-9000004", "prefix": "360g-Eikie9coo5", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "thoGh8aing", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/thoGh8aing.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 889, "min_amount": 87, "total_amount": 2862, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/thoGh8aing.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 26, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The hoox7AbieB publisher", "org_id": "GB-CHC-9000005", "prefix": "360g-Jae4ceokob", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Ukohleihi3", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Ukohleihi3.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 675, "min_amount": 55, "total_amount": 1337, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Ukohleihi3.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 27, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The UaPahr0eix publisher", "org_id": "GB-CHC-9000006", "prefix": "360g-sho1Loayai", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "ahpoY9eema", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/ahpoY9eema.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 877, "min_amount": 115, "total_amount": 2531, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/ahpoY9eema.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 28, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ieShe7au8Y publisher", "org_id": "GB-CHC-9000007", "prefix": "360g-ailiitei1O", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Jair4ooha0", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Jair4ooha0.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 990, "min_amount": 145, "total_amount": 2562, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Jair4ooha0.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 29, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ohy6ohna0C publisher", "org_id": "GB-CHC-9000008", "prefix": "360g-INg3omaiNe", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "uH0Ay2kein", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/uH0Ay2kein.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 821, "min_amount": 267, "total_amount": 2863, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/uH0Ay2kein.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 30, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Heex1ieKu0 publisher", "org_id": "GB-CHC-9000009", "prefix": "360g-Ap0inaap5e", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "duLioc6uci", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/duLioc6uci.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 3, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 700, "min_amount": 46, "total_amount": 1711, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/duLioc6uci.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [4]}}, {"model": "db.sourcefile", "pk": 31, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The publisher", "org_id": "GB-CHC-9000000", "prefix": "360g-aphed1Ohd8", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Oow2Nohcei", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Oow2Nohcei.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": false, "count": 1, "heading": "1 recipient organisation grant has a Recipient Org:Identifier that starts '360G-'", "percentage": 0.2}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications/0/title field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": false, "count": 4, "heading": "Recipient Orgs with external org identifier", "percentage": 0.8}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": false, "count": 2.0, "percentage": 0.8}, "BeneficiaryLocationNameButNoCode": {"fail": false, "count": 0}, "RecipientGeoDataButNoBeneficiary": {"fail": false, "count": 0}, "BeneficiaryButNotRecipientGeoData": {"fail": false, "count": 0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "RecipientIndWithoutToIndividualsDetails": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 971, "min_amount": 65, "total_amount": 2833, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {"COH": 4}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a", "GB-COH-example-a"]}, "datagetter_data": {"json": "data/json_all/Oow2Nohcei.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 32, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The xoidi9Aes8 publisher", "org_id": "GB-CHC-9000001", "prefix": "360g-eeth0Kaiqu", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Aebaepi3wi", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Aebaepi3wi.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications/0/title field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameButNoCode": {"fail": false, "count": 0}, "RecipientGeoDataButNoBeneficiary": {"fail": false, "count": 0}, "BeneficiaryButNotRecipientGeoData": {"fail": false, "count": 0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "RecipientIndWithoutToIndividualsDetails": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 802, "min_amount": 128, "total_amount": 2392, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Aebaepi3wi.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 33, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The phihith7Th publisher", "org_id": "GB-CHC-9000002", "prefix": "360g-Ahtahs5vaj", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Thool7dohT", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Thool7dohT.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications/0/title field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameButNoCode": {"fail": false, "count": 0}, "RecipientGeoDataButNoBeneficiary": {"fail": false, "count": 0}, "BeneficiaryButNotRecipientGeoData": {"fail": false, "count": 0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "RecipientIndWithoutToIndividualsDetails": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 828, "min_amount": 227, "total_amount": 3041, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Thool7dohT.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 34, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Uzee4aebah publisher", "org_id": "GB-CHC-9000003", "prefix": "360g-Pheiquohr3", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "oon2iR4eil", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/oon2iR4eil.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications/0/title field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameButNoCode": {"fail": false, "count": 0}, "RecipientGeoDataButNoBeneficiary": {"fail": false, "count": 0}, "BeneficiaryButNotRecipientGeoData": {"fail": false, "count": 0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "RecipientIndWithoutToIndividualsDetails": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 964, "min_amount": 79, "total_amount": 2915, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/oon2iR4eil.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 35, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Tha2eechei publisher", "org_id": "GB-CHC-9000004", "prefix": "360g-Eikie9coo5", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "thoGh8aing", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/thoGh8aing.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications/0/title field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameButNoCode": {"fail": false, "count": 0}, "RecipientGeoDataButNoBeneficiary": {"fail": false, "count": 0}, "BeneficiaryButNotRecipientGeoData": {"fail": false, "count": 0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "RecipientIndWithoutToIndividualsDetails": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 889, "min_amount": 87, "total_amount": 2862, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/thoGh8aing.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 36, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The hoox7AbieB publisher", "org_id": "GB-CHC-9000005", "prefix": "360g-Jae4ceokob", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Ukohleihi3", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Ukohleihi3.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications/0/title field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameButNoCode": {"fail": false, "count": 0}, "RecipientGeoDataButNoBeneficiary": {"fail": false, "count": 0}, "BeneficiaryButNotRecipientGeoData": {"fail": false, "count": 0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "RecipientIndWithoutToIndividualsDetails": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 675, "min_amount": 55, "total_amount": 1337, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Ukohleihi3.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 37, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The UaPahr0eix publisher", "org_id": "GB-CHC-9000006", "prefix": "360g-sho1Loayai", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "ahpoY9eema", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/ahpoY9eema.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications/0/title field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameButNoCode": {"fail": false, "count": 0}, "RecipientGeoDataButNoBeneficiary": {"fail": false, "count": 0}, "BeneficiaryButNotRecipientGeoData": {"fail": false, "count": 0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "RecipientIndWithoutToIndividualsDetails": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 877, "min_amount": 115, "total_amount": 2531, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/ahpoY9eema.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 38, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ieShe7au8Y publisher", "org_id": "GB-CHC-9000007", "prefix": "360g-ailiitei1O", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "Jair4ooha0", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/Jair4ooha0.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications/0/title field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameButNoCode": {"fail": false, "count": 0}, "RecipientGeoDataButNoBeneficiary": {"fail": false, "count": 0}, "BeneficiaryButNotRecipientGeoData": {"fail": false, "count": 0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "RecipientIndWithoutToIndividualsDetails": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 990, "min_amount": 145, "total_amount": 2562, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/Jair4ooha0.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 39, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ohy6ohna0C publisher", "org_id": "GB-CHC-9000008", "prefix": "360g-INg3omaiNe", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "uH0Ay2kein", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/uH0Ay2kein.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications/0/title field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameButNoCode": {"fail": false, "count": 0}, "RecipientGeoDataButNoBeneficiary": {"fail": false, "count": 0}, "BeneficiaryButNotRecipientGeoData": {"fail": false, "count": 0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "RecipientIndWithoutToIndividualsDetails": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 821, "min_amount": 267, "total_amount": 2863, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/uH0Ay2kein.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.sourcefile", "pk": 40, "fields": {"data": {"title": "Example grants", "issued": "2016-07-15", "license": "https://creativecommons.org/licenses/by/4.0/", "modified": "2018-08-03T10:26:34.000+0000", "publisher": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Heex1ieKu0 publisher", "org_id": "GB-CHC-9000009", "prefix": "360g-Ap0inaap5e", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "identifier": "duLioc6uci", "description": "The grans from Example", "distribution": [{"title": "Example", "accessURL": "http://www.example.com/this-campaign", "downloadURL": "http://example.com/example.xlsx"}], "license_name": "Creative Commons Attribution 4.0", "datagetter_metadata": {"json": "data/json_all/duLioc6uci.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}}, "getter_run": 4, "quality": {"TitleLength": {"fail": false, "count": 0}, "NoDataSource": {"fail": true, "count": 5, "heading": "5 grants do not have Data Source information", "percentage": 1.0}, "NoLastModified": {"fail": false, "count": 0}, "NoGrantProgramme": {"fail": false, "count": 0}, "FundingOrg360GPrefix": {"fail": false, "count": 0}, "TitleDescriptionSame": {"fail": false, "count": 0}, "NoBeneficiaryLocation": {"fail": false, "count": 0}, "IncompleteRecipientOrg": {"fail": false, "count": 0}, "RecipientOrg360GPrefix": {"fail": true, "count": 5, "heading": "5 recipient organisation grants have a Recipient Org:Identifier that starts '360G-'", "percentage": 1.0}, "ClassificationNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain classifications/0/title field", "percentage": 1.0}, "PlannedDurationNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefixExternal": {"fail": true, "count": 0, "heading": "Recipient Orgs with external org identifier", "percentage": 0.0}, "GrantProgrammeTitleNotPresent": {"fail": false, "count": 0}, "IndividualsCodeListsNotPresent": {"fail": false, "count": 0}, "RecipientOrgPrefix50pcExternal": {"fail": true, "count": 0.0, "percentage": 0.0}, "BeneficiaryLocationNameButNoCode": {"fail": false, "count": 0}, "RecipientGeoDataButNoBeneficiary": {"fail": false, "count": 0}, "BeneficiaryButNotRecipientGeoData": {"fail": false, "count": 0}, "BeneficiaryLocationNameNotPresent": {"fail": false, "count": 0}, "NoRecipientOrgCompanyCharityNumber": {"fail": true, "count": 5, "heading": "5 recipient organisation grants do not have either a Recipient Org:Company Number or a Recipient Org:Charity Number", "percentage": 1.0}, "BeneficiaryLocationGeoCodeNotPresent": {"fail": false, "count": 0}, "RecipientIndWithoutToIndividualsDetails": {"fail": false, "count": 0}, "BeneficiaryLocationCountryCodeNotPresent": {"fail": true, "count": 5, "heading": "5 grants do not contain beneficiaryLocation/0/countryCode field", "percentage": 1.0}}, "aggregate": {"count": 5, "funders": ["GB-example-b"], "currencies": {"GBP": {"count": 5, "max_amount": 700, "min_amount": 46, "total_amount": 1711, "currency_symbol": "£"}}, "award_years": {"2019": 5}, "max_award_date": "2019-10-03", "min_award_date": "2019-10-03", "recipient_org_types": {}, "recipient_individuals": 0, "recipient_organisations": ["360G-example-a"]}, "datagetter_data": {"json": "data/json_all/duLioc6uci.json", "valid": true, "downloads": true, "file_size": 3359833, "file_type": "xlsx", "acceptable_license": true, "datetime_downloaded": "2019-07-03T10:11:39+00:00"}, "data_valid": true, "acceptable_license": true, "downloads": true, "latest": [5]}}, {"model": "db.publisher", "pk": 101, "fields": {"org_id": "GB-CHC-9000002", "name": "The phihith7Th publisher", "aggregate": {"total": {"GBP": 3041.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0, "2024": 0, "2025": 0}, "orgIdTypes": {"COH": 4}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The phihith7Th publisher", "org_id": "GB-CHC-9000002", "prefix": "360g-Ahtahs5vaj", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Ahtahs5vaj"}}, {"model": "db.publisher", "pk": 102, "fields": {"org_id": "GB-CHC-9000007", "name": "The ieShe7au8Y publisher", "aggregate": {"total": {"GBP": 2562.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0, "2024": 0, "2025": 0}, "orgIdTypes": {"COH": 4}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ieShe7au8Y publisher", "org_id": "GB-CHC-9000007", "prefix": "360g-ailiitei1O", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-ailiitei1O"}}, {"model": "db.publisher", "pk": 103, "fields": {"org_id": "GB-CHC-9000009", "name": "The Heex1ieKu0 publisher", "aggregate": {"total": {"GBP": 1711.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0, "2024": 0, "2025": 0}, "orgIdTypes": {"COH": 4}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Heex1ieKu0 publisher", "org_id": "GB-CHC-9000009", "prefix": "360g-Ap0inaap5e", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Ap0inaap5e"}}, {"model": "db.publisher", "pk": 104, "fields": {"org_id": "GB-CHC-9000000", "name": "The publisher", "aggregate": {"total": {"GBP": 2833.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 2}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0, "2024": 0, "2025": 0}, "orgIdTypes": {"COH": 4}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The publisher", "org_id": "GB-CHC-9000000", "prefix": "360g-aphed1Ohd8", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 100, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-aphed1Ohd8"}}, {"model": "db.publisher", "pk": 105, "fields": {"org_id": "GB-CHC-9000001", "name": "The xoidi9Aes8 publisher", "aggregate": {"total": {"GBP": 2392.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0, "2024": 0, "2025": 0}, "orgIdTypes": {"COH": 4}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The xoidi9Aes8 publisher", "org_id": "GB-CHC-9000001", "prefix": "360g-eeth0Kaiqu", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-eeth0Kaiqu"}}, {"model": "db.publisher", "pk": 106, "fields": {"org_id": "GB-CHC-9000004", "name": "The Tha2eechei publisher", "aggregate": {"total": {"GBP": 2862.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0, "2024": 0, "2025": 0}, "orgIdTypes": {"COH": 4}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Tha2eechei publisher", "org_id": "GB-CHC-9000004", "prefix": "360g-Eikie9coo5", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Eikie9coo5"}}, {"model": "db.publisher", "pk": 107, "fields": {"org_id": "GB-CHC-9000008", "name": "The ohy6ohna0C publisher", "aggregate": {"total": {"GBP": 2863.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0, "2024": 0, "2025": 0}, "orgIdTypes": {"COH": 4}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The ohy6ohna0C publisher", "org_id": "GB-CHC-9000008", "prefix": "360g-INg3omaiNe", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-INg3omaiNe"}}, {"model": "db.publisher", "pk": 108, "fields": {"org_id": "GB-CHC-9000005", "name": "The hoox7AbieB publisher", "aggregate": {"total": {"GBP": 1337.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0, "2024": 0, "2025": 0}, "orgIdTypes": {"COH": 4}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The hoox7AbieB publisher", "org_id": "GB-CHC-9000005", "prefix": "360g-Jae4ceokob", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Jae4ceokob"}}, {"model": "db.publisher", "pk": 109, "fields": {"org_id": "GB-CHC-9000003", "name": "The Uzee4aebah publisher", "aggregate": {"total": {"GBP": 2915.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0, "2024": 0, "2025": 0}, "orgIdTypes": {"COH": 4}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The Uzee4aebah publisher", "org_id": "GB-CHC-9000003", "prefix": "360g-Pheiquohr3", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-Pheiquohr3"}}, {"model": "db.publisher", "pk": 110, "fields": {"org_id": "GB-CHC-9000006", "name": "The UaPahr0eix publisher", "aggregate": {"total": {"GBP": 2531.0, "grants": 5, "funders": 1, "publishers": 1, "recipientIndividuals": 0, "recipientOrganisations": 1}, "csvFiles": 0, "odsFiles": 0, "jsonFiles": 0, "xlsxFiles": 100, "awardYears": {"2016": 0, "2017": 0, "2018": 0, "2019": 5, "2020": 0, "2021": 0, "2022": 0, "2023": 0, "2024": 0, "2025": 0}, "orgIdTypes": {"COH": 4}, "awardedThisYear": 0, "awardedLastThreeMonths": 0}, "additional_data": {"alternative_names": []}, "source": "PUBLISHER", "data": {"logo": "http://www.example.com/uploads/Logo.png", "name": "The UaPahr0eix publisher", "org_id": "GB-CHC-9000006", "prefix": "360g-sho1Loayai", "website": "http://www.example.com/", "last_published": "2022-05-19"}, "quality": {"hasGrantDuration": 100, "has50pcExternalOrgId": 0, "hasGrantClassification": 0, "hasGrantProgrammeTitle": 100, "hasRecipientOrgLocations": 100, "hasBeneficiaryLocationName": 100, "hasBeneficiaryLocationGeoCode": 100, "hasRecipientOrgCompanyOrCharityNumber": 0}, "prefix": "360g-sho1Loayai"}}, {"model": "db.recipient", "pk": 21, "fields": {"org_id": "360G-example-a", "name": "Receive an example grant", "aggregate": {"grants": 46, "currencies": {"GBP": {"recipient_org": {"avg": 504.0217391304348, "max": 990, "min": 46, "total": 23185, "grants": 46}}}, "grants_ind": 0, "grants_org": 46, "maxAwardDate": "2019-10-03", "minAwardDate": "2019-10-03"}, "additional_data": {"alternative_names": []}, "source": "GRANT", "non_primary_org_ids": "[\"360G-example-nonprimary\"]"}}, {"model": "db.recipient", "pk": 22, "fields": {"org_id": "GB-COH-example-a", "name": "Receive an example grant", "aggregate": {"grants": 4, "currencies": {"GBP": {"recipient_org": {"avg": 465.5, "max": 888, "min": 65, "total": 1862, "grants": 4}}}, "grants_ind": 0, "grants_org": 4, "maxAwardDate": "2019-10-03", "minAwardDate": "2019-10-03"}, "additional_data": {"alternative_names": []}, "source": "GRANT", "non_primary_org_ids": "[]"}}, {"model": "db.funder", "pk": 13, "fields": {"org_id": "GB-example-b", "name": "Funding for examples", "aggregate": {"grants": 50, "currencies": {"GBP": {"recipient_org": {"avg": 500.94, "max": 990, "min": 46, "total": 25047, "grants": 50}}}, "grants_ind": 0, "grants_org": 50, "maxAwardDate": "2019-10-03", "minAwardDate": "2019-10-03"}, "additional_data": {"alternative_names": []}, "source": "GRANT", "non_primary_org_ids": "[]"}}, {"model": "db.grant", "pk": 1, "fields": {"grant_id": "360G-kahM5Ooc2u", "data": {"id": "360G-kahM5Ooc2u", "title": "The luumuch5Ir grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 971, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 1, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 2, "fields": {"grant_id": "360G-ie1yieThae", "data": {"id": "360G-ie1yieThae", "title": "The iKe8ieng2o grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 237, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 1, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 3, "fields": {"grant_id": "360G-aeNeghah3T", "data": {"id": "360G-aeNeghah3T", "title": "The mod6AimieY grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 888, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 1, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 4, "fields": {"grant_id": "360G-Ahc5Ooy2ce", "data": {"id": "360G-Ahc5Ooy2ce", "title": "The vueMueN2ci grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 672, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 1, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 5, "fields": {"grant_id": "360G-na5Yoo1eTh", "data": {"id": "360G-na5Yoo1eTh", "title": "The oorei2tiSu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 65, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 1, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 6, "fields": {"grant_id": "360G-kaath6Cha0", "data": {"id": "360G-kaath6Cha0", "title": "The uLaez7diu1 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 443, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 2, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 7, "fields": {"grant_id": "360G-Ooch7gohNi", "data": {"id": "360G-Ooch7gohNi", "title": "The aePhie7Aer grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 802, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 2, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 8, "fields": {"grant_id": "360G-Ol5ohroeMi", "data": {"id": "360G-Ol5ohroeMi", "title": "The egaeLeg2co grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 726, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 2, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 9, "fields": {"grant_id": "360G-aeNg7zi9sh", "data": {"id": "360G-aeNg7zi9sh", "title": "The aeloh2oz5D grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 293, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 2, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 10, "fields": {"grant_id": "360G-eiGoon6ohp", "data": {"id": "360G-eiGoon6ohp", "title": "The jei0Quoepu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 128, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 2, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 11, "fields": {"grant_id": "360G-shach4Die8", "data": {"id": "360G-shach4Die8", "title": "The eiChieKa0i grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 227, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-nonprimary", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 3, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-nonprimary\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 12, "fields": {"grant_id": "360G-mee1ipooHu", "data": {"id": "360G-mee1ipooHu", "title": "The heewaim1Yi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 641, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 3, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 13, "fields": {"grant_id": "360G-ohmahGo3Ru", "data": {"id": "360G-ohmahGo3Ru", "title": "The yeyi1Zee7i grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 724, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 3, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 14, "fields": {"grant_id": "360G-Fu1iah5To8", "data": {"id": "360G-Fu1iah5To8", "title": "The Iegekiev5s grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 828, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 3, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 15, "fields": {"grant_id": "360G-xooGhuuv7f", "data": {"id": "360G-xooGhuuv7f", "title": "The ThieS0Eigh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 621, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 3, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 16, "fields": {"grant_id": "360G-iexu4Sohmo", "data": {"id": "360G-iexu4Sohmo", "title": "The ou2OoGhee9 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 964, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 4, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 17, "fields": {"grant_id": "360G-fecieBi0ne", "data": {"id": "360G-fecieBi0ne", "title": "The ce1wieKudi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 475, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 4, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 18, "fields": {"grant_id": "360G-cayeenoh1C", "data": {"id": "360G-cayeenoh1C", "title": "The eeNeh0it0c grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 943, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 4, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 19, "fields": {"grant_id": "360G-jee5Eig6sh", "data": {"id": "360G-jee5Eig6sh", "title": "The yeekeWai7z grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 79, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 4, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 20, "fields": {"grant_id": "360G-Iegheev0pi", "data": {"id": "360G-Iegheev0pi", "title": "The Eitai5asae grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 454, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 4, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 21, "fields": {"grant_id": "360G-Naur7raech", "data": {"id": "360G-Naur7raech", "title": "The OhD0Moofup grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 480, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 5, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 22, "fields": {"grant_id": "360G-Ongaich7ie", "data": {"id": "360G-Ongaich7ie", "title": "The gai3Paethu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 872, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 5, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 23, "fields": {"grant_id": "360G-aeKaviep9l", "data": {"id": "360G-aeKaviep9l", "title": "The chaiwe1aeL grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 534, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 5, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 24, "fields": {"grant_id": "360G-thieRoo5Ah", "data": {"id": "360G-thieRoo5Ah", "title": "The Vakeic2phe grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 889, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 5, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 25, "fields": {"grant_id": "360G-Nohr6Ne5ei", "data": {"id": "360G-Nohr6Ne5ei", "title": "The uGh5esh6Sh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 87, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 5, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 26, "fields": {"grant_id": "360G-ieghohc9uW", "data": {"id": "360G-ieghohc9uW", "title": "The te3Jua8bi8 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 220, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 6, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 27, "fields": {"grant_id": "360G-Pahwai9bai", "data": {"id": "360G-Pahwai9bai", "title": "The Eech0Ouph4 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 265, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 6, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 28, "fields": {"grant_id": "360G-Quah4yi8ee", "data": {"id": "360G-Quah4yi8ee", "title": "The ooba7Thahv grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 55, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 6, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 29, "fields": {"grant_id": "360G-aiqu3OhFei", "data": {"id": "360G-aiqu3OhFei", "title": "The zoaQuau7ie grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 122, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 6, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 30, "fields": {"grant_id": "360G-thaeche0Ah", "data": {"id": "360G-thaeche0Ah", "title": "The oy1Apohng9 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 675, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 6, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 31, "fields": {"grant_id": "360G-Aex5Fachou", "data": {"id": "360G-Aex5Fachou", "title": "The thieSh0zu8 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 115, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 7, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 32, "fields": {"grant_id": "360G-io7taiR4ee", "data": {"id": "360G-io7taiR4ee", "title": "The uiza7Xeeyi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 877, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 7, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 33, "fields": {"grant_id": "360G-EeLoh8mahd", "data": {"id": "360G-EeLoh8mahd", "title": "The iCh4ohCei3 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 660, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 7, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 34, "fields": {"grant_id": "360G-ooR0MeunuL", "data": {"id": "360G-ooR0MeunuL", "title": "The reeV8Ait3o grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 735, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 7, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 35, "fields": {"grant_id": "360G-fae3la4oGe", "data": {"id": "360G-fae3la4oGe", "title": "The ohcie3Ki3k grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 144, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 7, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 36, "fields": {"grant_id": "360G-EighekohH1", "data": {"id": "360G-EighekohH1", "title": "The Faelio0jah grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 145, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 8, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 37, "fields": {"grant_id": "360G-Eiz4Veij8o", "data": {"id": "360G-Eiz4Veij8o", "title": "The IKoesou1ze grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 210, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 8, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 38, "fields": {"grant_id": "360G-egh2OxieNg", "data": {"id": "360G-egh2OxieNg", "title": "The iebogh6eiB grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 990, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 8, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 39, "fields": {"grant_id": "360G-ieSoa9reef", "data": {"id": "360G-ieSoa9reef", "title": "The eecoh1waiG grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 879, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 8, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 40, "fields": {"grant_id": "360G-tahb2paK8c", "data": {"id": "360G-tahb2paK8c", "title": "The xeojae1Ohz grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 338, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 8, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 41, "fields": {"grant_id": "360G-oBeisai1ie", "data": {"id": "360G-oBeisai1ie", "title": "The Foo4iefaik grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 553, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 9, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 42, "fields": {"grant_id": "360G-faeK3sah6o", "data": {"id": "360G-faeK3sah6o", "title": "The iiw0ieti8U grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 775, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 9, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 43, "fields": {"grant_id": "360G-kuBue1Ahli", "data": {"id": "360G-kuBue1Ahli", "title": "The ohfei4leJ5 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 447, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 9, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 44, "fields": {"grant_id": "360G-ahFiF8rohd", "data": {"id": "360G-ahFiF8rohd", "title": "The wioSh3EeCh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 267, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 9, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 45, "fields": {"grant_id": "360G-ahg9Bee2ec", "data": {"id": "360G-ahg9Bee2ec", "title": "The boothawu5W grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 821, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 9, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 46, "fields": {"grant_id": "360G-Fup2heirae", "data": {"id": "360G-Fup2heirae", "title": "The goisieFee3 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 229, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 10, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 47, "fields": {"grant_id": "360G-aep6ahng6N", "data": {"id": "360G-aep6ahng6N", "title": "The eerefeeh1K grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 610, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 10, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 48, "fields": {"grant_id": "360G-jiethoh5Ae", "data": {"id": "360G-jiethoh5Ae", "title": "The oGhoo5ue1c grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 126, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 10, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 49, "fields": {"grant_id": "360G-dauv5Vaih5", "data": {"id": "360G-dauv5Vaih5", "title": "The na2kaiD9ae grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 700, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 10, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 50, "fields": {"grant_id": "360G-wos3ooDaig", "data": {"id": "360G-wos3ooDaig", "title": "The Roh5veicei grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 46, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 1, "source_file": 10, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 51, "fields": {"grant_id": "360G-kahM5Ooc2u", "data": {"id": "360G-kahM5Ooc2u", "title": "The luumuch5Ir grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 971, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 11, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 52, "fields": {"grant_id": "360G-ie1yieThae", "data": {"id": "360G-ie1yieThae", "title": "The iKe8ieng2o grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 237, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 11, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 53, "fields": {"grant_id": "360G-aeNeghah3T", "data": {"id": "360G-aeNeghah3T", "title": "The mod6AimieY grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 888, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 11, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 54, "fields": {"grant_id": "360G-Ahc5Ooy2ce", "data": {"id": "360G-Ahc5Ooy2ce", "title": "The vueMueN2ci grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 672, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 11, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 55, "fields": {"grant_id": "360G-na5Yoo1eTh", "data": {"id": "360G-na5Yoo1eTh", "title": "The oorei2tiSu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 65, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 11, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 56, "fields": {"grant_id": "360G-kaath6Cha0", "data": {"id": "360G-kaath6Cha0", "title": "The uLaez7diu1 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 443, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 12, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 57, "fields": {"grant_id": "360G-Ooch7gohNi", "data": {"id": "360G-Ooch7gohNi", "title": "The aePhie7Aer grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 802, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 12, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 58, "fields": {"grant_id": "360G-Ol5ohroeMi", "data": {"id": "360G-Ol5ohroeMi", "title": "The egaeLeg2co grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 726, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 12, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 59, "fields": {"grant_id": "360G-aeNg7zi9sh", "data": {"id": "360G-aeNg7zi9sh", "title": "The aeloh2oz5D grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 293, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 12, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 60, "fields": {"grant_id": "360G-eiGoon6ohp", "data": {"id": "360G-eiGoon6ohp", "title": "The jei0Quoepu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 128, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 12, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 61, "fields": {"grant_id": "360G-shach4Die8", "data": {"id": "360G-shach4Die8", "title": "The eiChieKa0i grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 227, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 13, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 62, "fields": {"grant_id": "360G-mee1ipooHu", "data": {"id": "360G-mee1ipooHu", "title": "The heewaim1Yi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 641, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 13, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 63, "fields": {"grant_id": "360G-ohmahGo3Ru", "data": {"id": "360G-ohmahGo3Ru", "title": "The yeyi1Zee7i grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 724, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 13, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 64, "fields": {"grant_id": "360G-Fu1iah5To8", "data": {"id": "360G-Fu1iah5To8", "title": "The Iegekiev5s grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 828, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 13, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 65, "fields": {"grant_id": "360G-xooGhuuv7f", "data": {"id": "360G-xooGhuuv7f", "title": "The ThieS0Eigh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 621, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 13, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 66, "fields": {"grant_id": "360G-iexu4Sohmo", "data": {"id": "360G-iexu4Sohmo", "title": "The ou2OoGhee9 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 964, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 14, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 67, "fields": {"grant_id": "360G-fecieBi0ne", "data": {"id": "360G-fecieBi0ne", "title": "The ce1wieKudi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 475, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 14, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 68, "fields": {"grant_id": "360G-cayeenoh1C", "data": {"id": "360G-cayeenoh1C", "title": "The eeNeh0it0c grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 943, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 14, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 69, "fields": {"grant_id": "360G-jee5Eig6sh", "data": {"id": "360G-jee5Eig6sh", "title": "The yeekeWai7z grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 79, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 14, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 70, "fields": {"grant_id": "360G-Iegheev0pi", "data": {"id": "360G-Iegheev0pi", "title": "The Eitai5asae grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 454, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 14, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 71, "fields": {"grant_id": "360G-Naur7raech", "data": {"id": "360G-Naur7raech", "title": "The OhD0Moofup grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 480, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 15, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 72, "fields": {"grant_id": "360G-Ongaich7ie", "data": {"id": "360G-Ongaich7ie", "title": "The gai3Paethu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 872, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 15, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 73, "fields": {"grant_id": "360G-aeKaviep9l", "data": {"id": "360G-aeKaviep9l", "title": "The chaiwe1aeL grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 534, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 15, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 74, "fields": {"grant_id": "360G-thieRoo5Ah", "data": {"id": "360G-thieRoo5Ah", "title": "The Vakeic2phe grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 889, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 15, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 75, "fields": {"grant_id": "360G-Nohr6Ne5ei", "data": {"id": "360G-Nohr6Ne5ei", "title": "The uGh5esh6Sh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 87, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 15, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 76, "fields": {"grant_id": "360G-ieghohc9uW", "data": {"id": "360G-ieghohc9uW", "title": "The te3Jua8bi8 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 220, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 16, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 77, "fields": {"grant_id": "360G-Pahwai9bai", "data": {"id": "360G-Pahwai9bai", "title": "The Eech0Ouph4 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 265, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 16, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 78, "fields": {"grant_id": "360G-Quah4yi8ee", "data": {"id": "360G-Quah4yi8ee", "title": "The ooba7Thahv grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 55, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 16, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 79, "fields": {"grant_id": "360G-aiqu3OhFei", "data": {"id": "360G-aiqu3OhFei", "title": "The zoaQuau7ie grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 122, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 16, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 80, "fields": {"grant_id": "360G-thaeche0Ah", "data": {"id": "360G-thaeche0Ah", "title": "The oy1Apohng9 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 675, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 16, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 81, "fields": {"grant_id": "360G-Aex5Fachou", "data": {"id": "360G-Aex5Fachou", "title": "The thieSh0zu8 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 115, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 17, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 82, "fields": {"grant_id": "360G-io7taiR4ee", "data": {"id": "360G-io7taiR4ee", "title": "The uiza7Xeeyi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 877, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 17, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 83, "fields": {"grant_id": "360G-EeLoh8mahd", "data": {"id": "360G-EeLoh8mahd", "title": "The iCh4ohCei3 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 660, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 17, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 84, "fields": {"grant_id": "360G-ooR0MeunuL", "data": {"id": "360G-ooR0MeunuL", "title": "The reeV8Ait3o grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 735, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 17, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 85, "fields": {"grant_id": "360G-fae3la4oGe", "data": {"id": "360G-fae3la4oGe", "title": "The ohcie3Ki3k grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 144, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 17, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 86, "fields": {"grant_id": "360G-EighekohH1", "data": {"id": "360G-EighekohH1", "title": "The Faelio0jah grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 145, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 18, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 87, "fields": {"grant_id": "360G-Eiz4Veij8o", "data": {"id": "360G-Eiz4Veij8o", "title": "The IKoesou1ze grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 210, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 18, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 88, "fields": {"grant_id": "360G-egh2OxieNg", "data": {"id": "360G-egh2OxieNg", "title": "The iebogh6eiB grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 990, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 18, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 89, "fields": {"grant_id": "360G-ieSoa9reef", "data": {"id": "360G-ieSoa9reef", "title": "The eecoh1waiG grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 879, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 18, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 90, "fields": {"grant_id": "360G-tahb2paK8c", "data": {"id": "360G-tahb2paK8c", "title": "The xeojae1Ohz grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 338, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 18, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 91, "fields": {"grant_id": "360G-oBeisai1ie", "data": {"id": "360G-oBeisai1ie", "title": "The Foo4iefaik grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 553, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 19, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 92, "fields": {"grant_id": "360G-faeK3sah6o", "data": {"id": "360G-faeK3sah6o", "title": "The iiw0ieti8U grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 775, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 19, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 93, "fields": {"grant_id": "360G-kuBue1Ahli", "data": {"id": "360G-kuBue1Ahli", "title": "The ohfei4leJ5 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 447, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 19, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 94, "fields": {"grant_id": "360G-ahFiF8rohd", "data": {"id": "360G-ahFiF8rohd", "title": "The wioSh3EeCh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 267, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 19, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 95, "fields": {"grant_id": "360G-ahg9Bee2ec", "data": {"id": "360G-ahg9Bee2ec", "title": "The boothawu5W grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 821, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 19, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 96, "fields": {"grant_id": "360G-Fup2heirae", "data": {"id": "360G-Fup2heirae", "title": "The goisieFee3 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 229, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 20, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 97, "fields": {"grant_id": "360G-aep6ahng6N", "data": {"id": "360G-aep6ahng6N", "title": "The eerefeeh1K grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 610, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 20, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 98, "fields": {"grant_id": "360G-jiethoh5Ae", "data": {"id": "360G-jiethoh5Ae", "title": "The oGhoo5ue1c grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 126, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 20, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 99, "fields": {"grant_id": "360G-dauv5Vaih5", "data": {"id": "360G-dauv5Vaih5", "title": "The na2kaiD9ae grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 700, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 20, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 100, "fields": {"grant_id": "360G-wos3ooDaig", "data": {"id": "360G-wos3ooDaig", "title": "The Roh5veicei grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 46, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 2, "source_file": 20, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": []}}, {"model": "db.grant", "pk": 101, "fields": {"grant_id": "360G-kahM5Ooc2u", "data": {"id": "360G-kahM5Ooc2u", "title": "The luumuch5Ir grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 971, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 21, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 102, "fields": {"grant_id": "360G-ie1yieThae", "data": {"id": "360G-ie1yieThae", "title": "The iKe8ieng2o grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 237, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 21, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 103, "fields": {"grant_id": "360G-aeNeghah3T", "data": {"id": "360G-aeNeghah3T", "title": "The mod6AimieY grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 888, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 21, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 104, "fields": {"grant_id": "360G-Ahc5Ooy2ce", "data": {"id": "360G-Ahc5Ooy2ce", "title": "The vueMueN2ci grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 672, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 21, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 105, "fields": {"grant_id": "360G-na5Yoo1eTh", "data": {"id": "360G-na5Yoo1eTh", "title": "The oorei2tiSu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 65, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 21, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 106, "fields": {"grant_id": "360G-kaath6Cha0", "data": {"id": "360G-kaath6Cha0", "title": "The uLaez7diu1 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 443, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 22, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 107, "fields": {"grant_id": "360G-Ooch7gohNi", "data": {"id": "360G-Ooch7gohNi", "title": "The aePhie7Aer grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 802, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 22, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 108, "fields": {"grant_id": "360G-Ol5ohroeMi", "data": {"id": "360G-Ol5ohroeMi", "title": "The egaeLeg2co grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 726, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 22, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 109, "fields": {"grant_id": "360G-aeNg7zi9sh", "data": {"id": "360G-aeNg7zi9sh", "title": "The aeloh2oz5D grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 293, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 22, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 110, "fields": {"grant_id": "360G-eiGoon6ohp", "data": {"id": "360G-eiGoon6ohp", "title": "The jei0Quoepu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 128, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 22, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 111, "fields": {"grant_id": "360G-shach4Die8", "data": {"id": "360G-shach4Die8", "title": "The eiChieKa0i grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 227, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 23, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 112, "fields": {"grant_id": "360G-mee1ipooHu", "data": {"id": "360G-mee1ipooHu", "title": "The heewaim1Yi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 641, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 23, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 113, "fields": {"grant_id": "360G-ohmahGo3Ru", "data": {"id": "360G-ohmahGo3Ru", "title": "The yeyi1Zee7i grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 724, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 23, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 114, "fields": {"grant_id": "360G-Fu1iah5To8", "data": {"id": "360G-Fu1iah5To8", "title": "The Iegekiev5s grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 828, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 23, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 115, "fields": {"grant_id": "360G-xooGhuuv7f", "data": {"id": "360G-xooGhuuv7f", "title": "The ThieS0Eigh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 621, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 23, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 116, "fields": {"grant_id": "360G-iexu4Sohmo", "data": {"id": "360G-iexu4Sohmo", "title": "The ou2OoGhee9 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 964, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 24, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 117, "fields": {"grant_id": "360G-fecieBi0ne", "data": {"id": "360G-fecieBi0ne", "title": "The ce1wieKudi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 475, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 24, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 118, "fields": {"grant_id": "360G-cayeenoh1C", "data": {"id": "360G-cayeenoh1C", "title": "The eeNeh0it0c grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 943, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 24, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 119, "fields": {"grant_id": "360G-jee5Eig6sh", "data": {"id": "360G-jee5Eig6sh", "title": "The yeekeWai7z grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 79, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 24, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 120, "fields": {"grant_id": "360G-Iegheev0pi", "data": {"id": "360G-Iegheev0pi", "title": "The Eitai5asae grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 454, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 24, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 121, "fields": {"grant_id": "360G-Naur7raech", "data": {"id": "360G-Naur7raech", "title": "The OhD0Moofup grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 480, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 25, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 122, "fields": {"grant_id": "360G-Ongaich7ie", "data": {"id": "360G-Ongaich7ie", "title": "The gai3Paethu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 872, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 25, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 123, "fields": {"grant_id": "360G-aeKaviep9l", "data": {"id": "360G-aeKaviep9l", "title": "The chaiwe1aeL grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 534, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 25, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 124, "fields": {"grant_id": "360G-thieRoo5Ah", "data": {"id": "360G-thieRoo5Ah", "title": "The Vakeic2phe grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 889, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 25, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 125, "fields": {"grant_id": "360G-Nohr6Ne5ei", "data": {"id": "360G-Nohr6Ne5ei", "title": "The uGh5esh6Sh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 87, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 25, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 126, "fields": {"grant_id": "360G-ieghohc9uW", "data": {"id": "360G-ieghohc9uW", "title": "The te3Jua8bi8 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 220, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 26, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 127, "fields": {"grant_id": "360G-Pahwai9bai", "data": {"id": "360G-Pahwai9bai", "title": "The Eech0Ouph4 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 265, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 26, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 128, "fields": {"grant_id": "360G-Quah4yi8ee", "data": {"id": "360G-Quah4yi8ee", "title": "The ooba7Thahv grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 55, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 26, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 129, "fields": {"grant_id": "360G-aiqu3OhFei", "data": {"id": "360G-aiqu3OhFei", "title": "The zoaQuau7ie grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 122, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 26, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 130, "fields": {"grant_id": "360G-thaeche0Ah", "data": {"id": "360G-thaeche0Ah", "title": "The oy1Apohng9 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 675, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 26, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 131, "fields": {"grant_id": "360G-Aex5Fachou", "data": {"id": "360G-Aex5Fachou", "title": "The thieSh0zu8 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 115, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 27, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 132, "fields": {"grant_id": "360G-io7taiR4ee", "data": {"id": "360G-io7taiR4ee", "title": "The uiza7Xeeyi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 877, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 27, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 133, "fields": {"grant_id": "360G-EeLoh8mahd", "data": {"id": "360G-EeLoh8mahd", "title": "The iCh4ohCei3 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 660, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 27, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 134, "fields": {"grant_id": "360G-ooR0MeunuL", "data": {"id": "360G-ooR0MeunuL", "title": "The reeV8Ait3o grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 735, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 27, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 135, "fields": {"grant_id": "360G-fae3la4oGe", "data": {"id": "360G-fae3la4oGe", "title": "The ohcie3Ki3k grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 144, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 27, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 136, "fields": {"grant_id": "360G-EighekohH1", "data": {"id": "360G-EighekohH1", "title": "The Faelio0jah grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 145, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 28, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 137, "fields": {"grant_id": "360G-Eiz4Veij8o", "data": {"id": "360G-Eiz4Veij8o", "title": "The IKoesou1ze grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 210, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 28, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 138, "fields": {"grant_id": "360G-egh2OxieNg", "data": {"id": "360G-egh2OxieNg", "title": "The iebogh6eiB grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 990, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 28, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 139, "fields": {"grant_id": "360G-ieSoa9reef", "data": {"id": "360G-ieSoa9reef", "title": "The eecoh1waiG grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 879, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 28, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 140, "fields": {"grant_id": "360G-tahb2paK8c", "data": {"id": "360G-tahb2paK8c", "title": "The xeojae1Ohz grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 338, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 28, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 141, "fields": {"grant_id": "360G-oBeisai1ie", "data": {"id": "360G-oBeisai1ie", "title": "The Foo4iefaik grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 553, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 29, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 142, "fields": {"grant_id": "360G-faeK3sah6o", "data": {"id": "360G-faeK3sah6o", "title": "The iiw0ieti8U grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 775, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 29, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 143, "fields": {"grant_id": "360G-kuBue1Ahli", "data": {"id": "360G-kuBue1Ahli", "title": "The ohfei4leJ5 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 447, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 29, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 144, "fields": {"grant_id": "360G-ahFiF8rohd", "data": {"id": "360G-ahFiF8rohd", "title": "The wioSh3EeCh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 267, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 29, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 145, "fields": {"grant_id": "360G-ahg9Bee2ec", "data": {"id": "360G-ahg9Bee2ec", "title": "The boothawu5W grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 821, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 29, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 146, "fields": {"grant_id": "360G-Fup2heirae", "data": {"id": "360G-Fup2heirae", "title": "The goisieFee3 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 229, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 30, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 147, "fields": {"grant_id": "360G-aep6ahng6N", "data": {"id": "360G-aep6ahng6N", "title": "The eerefeeh1K grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 610, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 30, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 148, "fields": {"grant_id": "360G-jiethoh5Ae", "data": {"id": "360G-jiethoh5Ae", "title": "The oGhoo5ue1c grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 126, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 30, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 149, "fields": {"grant_id": "360G-dauv5Vaih5", "data": {"id": "360G-dauv5Vaih5", "title": "The na2kaiD9ae grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 700, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 30, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 150, "fields": {"grant_id": "360G-wos3ooDaig", "data": {"id": "360G-wos3ooDaig", "title": "The Roh5veicei grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 46, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 3, "source_file": 30, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [4]}}, {"model": "db.grant", "pk": 151, "fields": {"grant_id": "360G-kahM5Ooc2u", "data": {"id": "360G-kahM5Ooc2u", "title": "The luumuch5Ir grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 971, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 31, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 152, "fields": {"grant_id": "360G-ie1yieThae", "data": {"id": "360G-ie1yieThae", "title": "The iKe8ieng2o grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 237, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 31, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 153, "fields": {"grant_id": "360G-aeNeghah3T", "data": {"id": "360G-aeNeghah3T", "title": "The mod6AimieY grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 888, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 31, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 154, "fields": {"grant_id": "360G-Ahc5Ooy2ce", "data": {"id": "360G-Ahc5Ooy2ce", "title": "The vueMueN2ci grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 672, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 31, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 155, "fields": {"grant_id": "360G-na5Yoo1eTh", "data": {"id": "360G-na5Yoo1eTh", "title": "The oorei2tiSu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 65, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "GB-COH-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 31, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000000", "recipient_org_ids": "[\"GB-COH-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 156, "fields": {"grant_id": "360G-kaath6Cha0", "data": {"id": "360G-kaath6Cha0", "title": "The uLaez7diu1 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 443, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 32, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 157, "fields": {"grant_id": "360G-Ooch7gohNi", "data": {"id": "360G-Ooch7gohNi", "title": "The aePhie7Aer grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 802, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 32, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 158, "fields": {"grant_id": "360G-Ol5ohroeMi", "data": {"id": "360G-Ol5ohroeMi", "title": "The egaeLeg2co grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 726, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 32, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 159, "fields": {"grant_id": "360G-aeNg7zi9sh", "data": {"id": "360G-aeNg7zi9sh", "title": "The aeloh2oz5D grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 293, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 32, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 160, "fields": {"grant_id": "360G-eiGoon6ohp", "data": {"id": "360G-eiGoon6ohp", "title": "The jei0Quoepu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 128, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 32, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000001", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 161, "fields": {"grant_id": "360G-shach4Die8", "data": {"id": "360G-shach4Die8", "title": "The eiChieKa0i grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 227, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 33, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 162, "fields": {"grant_id": "360G-mee1ipooHu", "data": {"id": "360G-mee1ipooHu", "title": "The heewaim1Yi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 641, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 33, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 163, "fields": {"grant_id": "360G-ohmahGo3Ru", "data": {"id": "360G-ohmahGo3Ru", "title": "The yeyi1Zee7i grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 724, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 33, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 164, "fields": {"grant_id": "360G-Fu1iah5To8", "data": {"id": "360G-Fu1iah5To8", "title": "The Iegekiev5s grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 828, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 33, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 165, "fields": {"grant_id": "360G-xooGhuuv7f", "data": {"id": "360G-xooGhuuv7f", "title": "The ThieS0Eigh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 621, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 33, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000002", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 166, "fields": {"grant_id": "360G-iexu4Sohmo", "data": {"id": "360G-iexu4Sohmo", "title": "The ou2OoGhee9 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 964, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 34, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 167, "fields": {"grant_id": "360G-fecieBi0ne", "data": {"id": "360G-fecieBi0ne", "title": "The ce1wieKudi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 475, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 34, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 168, "fields": {"grant_id": "360G-cayeenoh1C", "data": {"id": "360G-cayeenoh1C", "title": "The eeNeh0it0c grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 943, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 34, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 169, "fields": {"grant_id": "360G-jee5Eig6sh", "data": {"id": "360G-jee5Eig6sh", "title": "The yeekeWai7z grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 79, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 34, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 170, "fields": {"grant_id": "360G-Iegheev0pi", "data": {"id": "360G-Iegheev0pi", "title": "The Eitai5asae grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 454, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 34, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000003", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 171, "fields": {"grant_id": "360G-Naur7raech", "data": {"id": "360G-Naur7raech", "title": "The OhD0Moofup grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 480, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 35, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 172, "fields": {"grant_id": "360G-Ongaich7ie", "data": {"id": "360G-Ongaich7ie", "title": "The gai3Paethu grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 872, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 35, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 173, "fields": {"grant_id": "360G-aeKaviep9l", "data": {"id": "360G-aeKaviep9l", "title": "The chaiwe1aeL grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 534, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 35, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 174, "fields": {"grant_id": "360G-thieRoo5Ah", "data": {"id": "360G-thieRoo5Ah", "title": "The Vakeic2phe grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 889, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 35, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 175, "fields": {"grant_id": "360G-Nohr6Ne5ei", "data": {"id": "360G-Nohr6Ne5ei", "title": "The uGh5esh6Sh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 87, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 35, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000004", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 176, "fields": {"grant_id": "360G-ieghohc9uW", "data": {"id": "360G-ieghohc9uW", "title": "The te3Jua8bi8 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 220, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 36, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 177, "fields": {"grant_id": "360G-Pahwai9bai", "data": {"id": "360G-Pahwai9bai", "title": "The Eech0Ouph4 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 265, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 36, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 178, "fields": {"grant_id": "360G-Quah4yi8ee", "data": {"id": "360G-Quah4yi8ee", "title": "The ooba7Thahv grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 55, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 36, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 179, "fields": {"grant_id": "360G-aiqu3OhFei", "data": {"id": "360G-aiqu3OhFei", "title": "The zoaQuau7ie grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 122, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 36, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 180, "fields": {"grant_id": "360G-thaeche0Ah", "data": {"id": "360G-thaeche0Ah", "title": "The oy1Apohng9 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 675, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 36, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000005", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 181, "fields": {"grant_id": "360G-Aex5Fachou", "data": {"id": "360G-Aex5Fachou", "title": "The thieSh0zu8 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 115, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 37, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 182, "fields": {"grant_id": "360G-io7taiR4ee", "data": {"id": "360G-io7taiR4ee", "title": "The uiza7Xeeyi grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 877, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 37, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 183, "fields": {"grant_id": "360G-EeLoh8mahd", "data": {"id": "360G-EeLoh8mahd", "title": "The iCh4ohCei3 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 660, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 37, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 184, "fields": {"grant_id": "360G-ooR0MeunuL", "data": {"id": "360G-ooR0MeunuL", "title": "The reeV8Ait3o grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 735, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 37, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 185, "fields": {"grant_id": "360G-fae3la4oGe", "data": {"id": "360G-fae3la4oGe", "title": "The ohcie3Ki3k grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 144, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 37, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000006", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 186, "fields": {"grant_id": "360G-EighekohH1", "data": {"id": "360G-EighekohH1", "title": "The Faelio0jah grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 145, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 38, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 187, "fields": {"grant_id": "360G-Eiz4Veij8o", "data": {"id": "360G-Eiz4Veij8o", "title": "The IKoesou1ze grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 210, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 38, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 188, "fields": {"grant_id": "360G-egh2OxieNg", "data": {"id": "360G-egh2OxieNg", "title": "The iebogh6eiB grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 990, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 38, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 189, "fields": {"grant_id": "360G-ieSoa9reef", "data": {"id": "360G-ieSoa9reef", "title": "The eecoh1waiG grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 879, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 38, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 190, "fields": {"grant_id": "360G-tahb2paK8c", "data": {"id": "360G-tahb2paK8c", "title": "The xeojae1Ohz grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 338, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 38, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000007", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 191, "fields": {"grant_id": "360G-oBeisai1ie", "data": {"id": "360G-oBeisai1ie", "title": "The Foo4iefaik grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 553, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 39, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 192, "fields": {"grant_id": "360G-faeK3sah6o", "data": {"id": "360G-faeK3sah6o", "title": "The iiw0ieti8U grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 775, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 39, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 193, "fields": {"grant_id": "360G-kuBue1Ahli", "data": {"id": "360G-kuBue1Ahli", "title": "The ohfei4leJ5 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 447, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 39, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 194, "fields": {"grant_id": "360G-ahFiF8rohd", "data": {"id": "360G-ahFiF8rohd", "title": "The wioSh3EeCh grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 267, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 39, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 195, "fields": {"grant_id": "360G-ahg9Bee2ec", "data": {"id": "360G-ahg9Bee2ec", "title": "The boothawu5W grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 821, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 39, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000008", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 196, "fields": {"grant_id": "360G-Fup2heirae", "data": {"id": "360G-Fup2heirae", "title": "The goisieFee3 grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 229, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 40, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 197, "fields": {"grant_id": "360G-aep6ahng6N", "data": {"id": "360G-aep6ahng6N", "title": "The eerefeeh1K grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 610, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 40, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 198, "fields": {"grant_id": "360G-jiethoh5Ae", "data": {"id": "360G-jiethoh5Ae", "title": "The oGhoo5ue1c grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 126, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 40, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 199, "fields": {"grant_id": "360G-dauv5Vaih5", "data": {"id": "360G-dauv5Vaih5", "title": "The na2kaiD9ae grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 700, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 40, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "db.grant", "pk": 200, "fields": {"grant_id": "360G-wos3ooDaig", "data": {"id": "360G-wos3ooDaig", "title": "The Roh5veicei grant", "currency": "GBP", "awardDate": "2019-10-03T00:00:00+00:00", "description": "Example grant description", "dateModified": "2019-08-03T00:00:00Z", "fromOpenCall": "Yes", "plannedDates": [{"endDate": "2017-02-15", "duration": 4, "startDate": "2016-10-03"}], "amountAwarded": 46, "grantProgramme": [{"code": "00200200220", "title": "Example grants August 2019"}], "beneficiaryLocation": [{"name": "England; Scotland; Wales", "geoCode": "K02000001", "geoCodeType": "CTRY"}], "fundingOrganization": [{"id": "GB-example-b", "name": "Funding for examples"}], "recipientOrganization": [{"id": "360G-example-a", "name": "Receive an example grant", "postalCode": "SW1 1AA", "streetAddress": "10 Downing street", "addressCountry": "United Kingdom", "addressLocality": "LONDON"}]}, "getter_run": 4, "source_file": 40, "additional_data": {"codeListLookup": {"regrantType": "", "toIndividualsDetails": {"grantPurpose": [], "primaryGrantReason": "", "secondaryGrantReason": ""}}, "locationLookup": [], "TSGRecipientType": "Organisation", "recipientLocation": " "}, "publisher_org_id": "GB-CHC-9000009", "recipient_org_ids": "[\"360G-example-a\"]", "funding_org_ids": "[\"GB-example-b\"]", "latest": [5]}}, {"model": "additional_data.orginfocache", "pk": 1, "fields": {"org_id": "360G-example-a", "org_ids": "[\"360G-example-a\", \"360G-example-nonprimary\"]", "org_type": "ccew", "fetched": "2025-08-13T13:52:23.586Z", "data": {}}}]
\ No newline at end of file
diff --git a/datastore/db/management/commands/load_data_package.py b/datastore/db/management/commands/load_data_package.py
index 6af7e588..a19d0d9e 100644
--- a/datastore/db/management/commands/load_data_package.py
+++ b/datastore/db/management/commands/load_data_package.py
@@ -23,16 +23,6 @@ def load_data(self):
getter_run = db.GetterRun.objects.create()
for ob in dataset:
- prefix = ob["publisher"]["prefix"]
- publisher, c = db.Publisher.objects.get_or_create(
- getter_run=getter_run,
- prefix=prefix,
- data=ob["publisher"],
- org_id=ob["publisher"].get("org_id", "unknown"),
- name=ob["publisher"]["name"],
- source=db.Entity.PUBLISHER,
- )
-
source_file = db.SourceFile.objects.create(data=ob, getter_run=getter_run)
grant_data = self.load_grant_data(ob["datagetter_metadata"]["json"])
@@ -49,7 +39,6 @@ def load_data(self):
grant_bulk_insert.append(
db.Grant.from_data(
source_file=source_file,
- publisher=publisher,
data=grant,
additional_data=additional_data,
getter_run=getter_run,
diff --git a/datastore/db/management/commands/load_datagetter_data.py b/datastore/db/management/commands/load_datagetter_data.py
index 3cd18612..0447d57e 100644
--- a/datastore/db/management/commands/load_datagetter_data.py
+++ b/datastore/db/management/commands/load_datagetter_data.py
@@ -138,16 +138,6 @@ def load_data(self):
getter_run = db.GetterRun.objects.create()
for ob in dataset:
- prefix = ob["publisher"]["prefix"]
- publisher, c = db.Publisher.objects.get_or_create(
- getter_run=getter_run,
- prefix=prefix,
- data=ob["publisher"],
- org_id=ob["publisher"].get("org_id", "unknown"),
- name=ob["publisher"]["name"],
- source=db.Entity.PUBLISHER,
- )
-
source_file = db.SourceFile.objects.create(data=ob, getter_run=getter_run)
try:
@@ -176,7 +166,6 @@ def load_data(self):
grant_bulk_insert.append(
db.Grant.from_data(
source_file=source_file,
- publisher=publisher,
data=grant,
additional_data=additional_data,
getter_run=getter_run,
@@ -215,10 +204,10 @@ def handle(self, *args, **options):
print("Updating Latest", file=self.stdout)
db.Latest.update()
+ # Update entities data for publisher, funders and recipients
+ call_command("manage_entities_data", "--update")
print("Updating quality data", file=self.stdout)
call_command("rewrite_quality_data", "latest")
- # Update entities data for funders and recipients
- call_command("manage_entities_data", "--update")
# Clear all cached objects - The latest data as well as new data has been added
cache.clear()
diff --git a/datastore/db/management/commands/manage_entities_data.py b/datastore/db/management/commands/manage_entities_data.py
index 3ab0c654..418fc106 100644
--- a/datastore/db/management/commands/manage_entities_data.py
+++ b/datastore/db/management/commands/manage_entities_data.py
@@ -1,3 +1,7 @@
+import sys
+import json
+
+from datetime import datetime
from django.core.management.base import BaseCommand, CommandError
import db.models as db
@@ -5,9 +9,6 @@
from django.db import connection, transaction
from django.db.backends.postgresql.introspection import DatabaseIntrospection
-import sys
-import json
-
from additional_data.sources.find_that_charity import non_primary_org_ids_lookup_maps
data_types_reverse = DatabaseIntrospection(connection).data_types_reverse.copy()
@@ -15,26 +16,75 @@
@transaction.atomic
-def update_entities():
- grants = db.Latest.objects.get(series=db.Latest.CURRENT).grant_set.values_list(
- "data", flat=True
+def update_entities(publishers_only: bool = False):
+
+ # Delete old publishers from previous latest
+ print("Removing old publisher data")
+ db.Publisher.objects.all().delete()
+
+ # If multiple sourcefiles contain publisher info, then choose the sourcefile from
+ # the most recent getterrun.
+ #
+ # dict of Publisher prefix -> (GetterRun.datetime, Publisher obj)
+ publishers_bulk: dict[str, tuple[datetime, db.Publisher]] = {}
+
+ print("Analysing latest best source files for publishers")
+
+ sourcefiles = db.SourceFile.objects.filter(
+ latest=db.Latest.objects.get(series=db.Latest.CURRENT)
)
- # Delete old entities from previous latest
- print("Removing old entity data")
- db.Recipient.objects.all().delete()
- db.Funder.objects.all().delete()
+ # Create publishers
+ # TODO: Sort publishers by most recent getter run
+ # because previous getterruns might have out-of-date registry info attached
+ for sourcefile in sourcefiles:
+ sf_data = sourcefile.data
+ publisher_prefix = sf_data["publisher"]["prefix"]
+ if (
+ publisher_prefix not in publishers_bulk
+ or sourcefile.getter_run.datetime > publishers_bulk[publisher_prefix][0]
+ ):
+ publisher = db.Publisher(
+ prefix=publisher_prefix,
+ data=sf_data["publisher"],
+ org_id=sf_data["publisher"].get("org_id", "unknown"),
+ name=sf_data["publisher"]["name"],
+ source=db.Entity.PUBLISHER,
+ )
+ publishers_bulk[publisher_prefix] = (
+ sourcefile.getter_run.datetime,
+ publisher,
+ )
+
+ print(f"Creating {len(publishers_bulk)} publisher entities")
+ db.Publisher.objects.bulk_create(
+ [p[1] for p in publishers_bulk.values()], batch_size=100000
+ )
+
+ if publishers_only:
+ return
recipient_orgs_bulk = {}
funder_orgs_bulk = {}
+
(
non_primary_to_primary_org_ids_lookup,
primary_to_non_primary_org_ids_lookup,
) = non_primary_org_ids_lookup_maps()
+ # Delete old entities from previous latest
+ print("Removing old recipient & funder data")
+ db.Recipient.objects.all().delete()
+ db.Funder.objects.all().delete()
+
print("Analysing latest best grant data for entities")
+ grants = db.Latest.objects.get(series=db.Latest.CURRENT).grant_set.values_list(
+ "data", flat=True
+ )
+
for grant in grants:
+ # Create recipient orgs
for recipient in grant.get("recipientOrganization", []):
# If the org-id provided is a non-primary org-id return the primary
# otherwise return the specified org-id
@@ -76,9 +126,9 @@ def update_entities():
funder_ob.source = db.Entity.GRANT
funder_ob.update_aggregate(grant)
- print("Creating recipient org entities")
+ print(f"Creating {len(recipient_orgs_bulk)} recipient org entities")
db.Recipient.objects.bulk_create(recipient_orgs_bulk.values(), batch_size=100000)
- print("Creating funder org entities")
+ print(f"Creating {len(funder_orgs_bulk)} funder org entities")
db.Funder.objects.bulk_create(funder_orgs_bulk.values(), batch_size=100000)
@@ -142,9 +192,17 @@ def add_arguments(self, parser):
help="Update the entities data for latest best grant data",
)
+ parser.add_argument(
+ "--update-publishers-only",
+ action="store_true",
+ dest="update_publishers_only",
+ )
+
def handle(self, *args, **options):
if options.get("update_entities"):
- update_entities()
+ update_entities(
+ publishers_only=options.get("update_publishers_only", False)
+ )
return
if options.get("entity_type"):
diff --git a/datastore/db/migrations/0025_alter_publisher_unique_together_and_more.py b/datastore/db/migrations/0025_alter_publisher_unique_together_and_more.py
new file mode 100644
index 00000000..4943b31e
--- /dev/null
+++ b/datastore/db/migrations/0025_alter_publisher_unique_together_and_more.py
@@ -0,0 +1,25 @@
+# Generated by Django 4.2.21 on 2025-10-15 21:08
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ("db", "0024_auto_20240610_1847"),
+ ]
+
+ operations = [
+ migrations.AlterUniqueTogether(
+ name="publisher",
+ unique_together=set(),
+ ),
+ migrations.RemoveField(
+ model_name="grant",
+ name="publisher",
+ ),
+ migrations.RemoveField(
+ model_name="publisher",
+ name="getter_run",
+ ),
+ ]
diff --git a/datastore/db/migrations/0026_alter_publisher_prefix.py b/datastore/db/migrations/0026_alter_publisher_prefix.py
new file mode 100644
index 00000000..9640b777
--- /dev/null
+++ b/datastore/db/migrations/0026_alter_publisher_prefix.py
@@ -0,0 +1,40 @@
+# Generated by Django 4.2.21 on 2025-10-15 21:09
+from django.db import migrations, models
+
+
+def delete_all_publishers(apps, schema_editor):
+ # If there are duplicate Publishers with the same prefix, we need to delete them for the migration to succeed
+ Publisher = apps.get_model("db", "Publisher")
+
+ distinct_prefix_count = (
+ Publisher.objects.order_by().values("prefix").distinct().count()
+ )
+ if Publisher.objects.count() > distinct_prefix_count:
+ print(
+ "\n\n"
+ "WARNING: Migration db.0026 deletes all Publishers. You need to re-create them with:\n"
+ " ./manage.py manage_entities_data --update --update-publishers-only"
+ "\n\n"
+ )
+ Publisher.objects.all().delete()
+ else:
+ print(
+ f"Migration db.0026: No duplicate publishers found, keeping {Publisher.objects.count()} existing publishers."
+ )
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ("db", "0025_alter_publisher_unique_together_and_more"),
+ ]
+
+ operations = [
+ # We have to clear Publishers as they are now created by manage_entities_data
+ migrations.RunPython(delete_all_publishers),
+ migrations.AlterField(
+ model_name="publisher",
+ name="prefix",
+ field=models.CharField(max_length=300, unique=True),
+ ),
+ ]
diff --git a/datastore/db/models.py b/datastore/db/models.py
index 1af78ac5..64897dc6 100644
--- a/datastore/db/models.py
+++ b/datastore/db/models.py
@@ -150,8 +150,6 @@ def delete_all_data_from_run(self):
sourcefile.grant_set.all().delete()
sourcefile.delete()
- self.publisher_set.all().delete()
-
def archive_run(self):
"""Archive the run and delete grant data"""
self.grant_set.all().delete()
@@ -191,9 +189,7 @@ def get_distribution(self):
def get_publisher(self):
"""returns the Publisher object for this source file"""
- return Publisher.objects.get(
- getter_run=self.getter_run, prefix=self.data["publisher"]["prefix"]
- )
+ return Publisher.objects.get(prefix=self.data["publisher"]["prefix"])
def save(self, *args, **kwargs):
try:
@@ -364,14 +360,33 @@ class Publisher(Entity):
quality = JSONField(null=True)
# Convenience fields
- prefix = models.CharField(max_length=300)
- getter_run = models.ForeignKey(GetterRun, on_delete=models.CASCADE)
+ prefix = models.CharField(max_length=300, unique=True)
def get_latest_sourcefiles(self):
return Latest.objects.get(series=Latest.CURRENT).sourcefile_set.filter(
data__publisher__prefix=self.prefix
)
+ @classmethod
+ def get_most_recent(cls, org_id: str, queryset=None) -> "Publisher":
+ if not queryset:
+ queryset = Publisher.objects.all().order_by()
+ publishers = queryset.filter(org_id=org_id)
+ if len(publishers) == 1:
+ return publishers[0]
+ elif len(publishers) == 0:
+ raise cls.DoesNotExist
+ else:
+ # Find the publisher with the most recently fetched sourcefile
+ def _get_dt(p: Publisher) -> datetime.datetime:
+ return (
+ p.get_latest_sourcefiles()
+ .order_by("getter_run__datetime")[0]
+ .getter_run.datetime
+ )
+
+ return sorted(list(publishers), key=_get_dt)[-1]
+
# Update the convenience fields
def save(self, *args, **kwargs):
if not self.name:
@@ -382,10 +397,9 @@ def save(self, *args, **kwargs):
super().save(*args, **kwargs)
def __str__(self):
- return "%s (datagetter %s)" % (self.name, str(self.getter_run.datetime))
+ return "%s (%s)" % (self.name, self.prefix)
class Meta:
- unique_together = ("getter_run", "prefix")
ordering = ["prefix"]
indexes = [Index(fields=["org_id", "name"])]
@@ -421,7 +435,6 @@ class Grant(models.Model):
data = JSONField(verbose_name="Grant data")
getter_run = models.ForeignKey(GetterRun, on_delete=models.CASCADE)
- publisher = models.ForeignKey(Publisher, on_delete=models.DO_NOTHING)
source_file = models.ForeignKey(SourceFile, on_delete=models.DO_NOTHING)
# Convenience shortcut to latest->grants
latest = models.ManyToManyField(Latest)
@@ -468,19 +481,18 @@ class Meta:
def from_data(
data: Dict[str, Any],
getter_run: GetterRun,
- publisher: Publisher,
source_file: SourceFile,
additional_data: Dict[str, Any],
):
"""Make a Grant instance from JSON/dict data and fill out the denormalised convenience fields."""
+
return Grant(
grant_id=data["id"],
data=data,
getter_run=getter_run,
- publisher=publisher,
source_file=source_file,
additional_data=additional_data,
- publisher_org_id=publisher.org_id,
+ publisher_org_id=source_file.data["publisher"].get("org_id", "unknown"),
recipient_org_ids=[
org["id"]
# recipientOrganization isn't present in grants to individuals
diff --git a/datastore/monitoring/metrics.py b/datastore/monitoring/metrics.py
index ff03d0bf..69961f26 100644
--- a/datastore/monitoring/metrics.py
+++ b/datastore/monitoring/metrics.py
@@ -87,9 +87,7 @@ def dataset_metrics(latest: Latest) -> DatasetMetrics:
total_grants=sf_agg["total_grants"],
total_grants_to_individuals=gr_agg["total_grants_to_individuals"],
total_amount_awarded_gbp=sf_agg["total_gbp"],
- total_publishers=Publisher.objects.filter(
- getter_run=GetterRun.latest()
- ).count(),
+ total_publishers=Publisher.objects.all().count(),
total_funders=Funder.objects.count(),
total_recipient_organisations=Recipient.objects.count(),
total_recipient_individuals=gr_agg["total_recipient_individuals"],
@@ -133,7 +131,7 @@ def gather_publisher_metrics(
snapshot: MonitoringSnapshot,
) -> List[PublisherMetricsRecord]:
records = list()
- for publisher in Publisher.objects.filter(getter_run=GetterRun.latest()):
+ for publisher in Publisher.objects.order_by().all():
try:
records.append(
PublisherMetricsRecord(
@@ -149,7 +147,7 @@ def gather_publisher_metrics(
logger.error(
"Exception while creating metrics record for Publisher %s: %s",
publisher.name,
- e,
+ str(e),
)
return PublisherMetricsRecord.objects.bulk_create(records)
diff --git a/datastore/tests/fake_testdata.py b/datastore/tests/fake_testdata.py
index d57cf65e..5f47ad15 100644
--- a/datastore/tests/fake_testdata.py
+++ b/datastore/tests/fake_testdata.py
@@ -2,7 +2,8 @@
# These functions can be used to generate on-the-fly test data for
# tests that require more fine control or testing mutations e.g. Entities data
from datetime import timedelta, datetime, timezone, time
-from typing import TypedDict, Optional
+from django.db import transaction
+from typing import TypedDict, Optional, Generator
from contextlib import contextmanager
import logging
@@ -10,13 +11,13 @@
import django.utils.timezone
from db.models import (
- Publisher,
SourceFile,
GetterRun,
Grant,
Latest,
)
from db.management.commands.manage_entities_data import update_entities
+from data_quality.management.commands.rewrite_quality_data import rewrite_quality_data
from monitoring.metrics import (
gather_metrics,
)
@@ -24,12 +25,13 @@
logger = logging.getLogger(__name__)
+@transaction.atomic
@contextmanager
def fake_getter_run(
fake: faker.Faker,
timestamp: Optional[datetime] = None,
timestamp_dt: Optional[timedelta] = None,
-) -> GetterRun:
+) -> Generator[GetterRun, None, None]:
"""
Context manager that creates a GetterRun 1 day after the last one, or at a
random past date if there are no prior GetterRuns.
@@ -61,7 +63,7 @@ def fake_getter_run(
)
getter_run = GetterRun.objects.create(datetime=timestamp)
- logger.info(f"Created Fake GetterRun @ {getter_run.datetime}")
+ logger.info(f"Created Fake GetterRun {getter_run.id} @ {getter_run.datetime}")
if getter_run.datetime > datetime.now(tz=timezone.utc):
# Some tests break if you use future dates
@@ -70,96 +72,40 @@ def fake_getter_run(
yield getter_run
# Update entities, metrics data etc after each GetterRun
- # TODO: Update Publisher aggregate?
- # TODO: Update Quality data? is that even possible or desirable for fake Grants?
Latest.update()
update_entities()
+ # Race conditions seem to happen when running tests if threads are enabled
+ rewrite_quality_data("latest", publisher_only=True, threads=0)
gather_metrics()
-def fake_publisher(fake: faker.Faker, getter_run: GetterRun) -> Publisher:
- publisher_aggregate = {
- "total": {
- "GBP": 2852197.0,
- "grants": 118,
- "funders": 1,
- "publishers": 1,
- "recipientIndividuals": 0,
- "recipientOrganisations": 82,
- },
- "csvFiles": 100,
- "odsFiles": 0,
- "jsonFiles": 0,
- "xlsxFiles": 0,
- "awardYears": {
- "2015": 0,
- "2016": 0,
- "2017": 0,
- "2018": 1,
- "2019": 12,
- "2020": 12,
- "2021": 21,
- "2022": 21,
- "2023": 29,
- "2024": 22,
- },
- "orgIdTypes": {
- "SC": 46760,
- "CHC": 305478,
- "COH": 197806,
- "EDU": 10601,
- "EIN": 1070,
- "LAE": 4454,
- "NHS": 1876,
- "NIC": 6790,
- "org": 1393,
- "UKPRN": 65188,
- },
- "awardedThisYear": 100,
- "awardedLastThreeMonths": 100,
- }
-
- publisher_quality = {
- "hasGrantDuration": 100,
- "has50pcExternalOrgId": 100,
- "hasGrantClassification": 0,
- "hasGrantProgrammeTitle": 0,
- "hasRecipientOrgLocations": 100,
- "hasBeneficiaryLocationName": 100,
- "hasBeneficiaryLocationGeoCode": 0,
- "hasRecipientOrgCompanyOrCharityNumber": 100,
+class FakePublisherInfo(TypedDict):
+ name: str
+ prefix: str
+ org_id: str
+ logo: str
+ website: str
+ last_published: str
+
+
+def fake_publisher_info(fake: faker.Faker) -> FakePublisherInfo:
+ publisher_prefix = f"360GX-{fake.slug()}"
+ publisher_info: FakePublisherInfo = {
+ "name": fake.company(),
+ "prefix": publisher_prefix,
+ "logo": fake.image_url(),
+ "org_id": f"XE-EXAMPLE-{publisher_prefix}",
+ "website": fake.url(),
+ "last_published": "2019-11-29",
}
- publisher_prefix = fake.slug()
- publisher = Publisher.objects.create(
- org_id=f"XE-EXAMPLE-{publisher_prefix}",
- data={
- "name": fake.company(),
- "prefix": publisher_prefix,
- },
- aggregate=publisher_aggregate,
- quality=publisher_quality,
- getter_run=getter_run,
- )
-
- return publisher
-
-
-def copy_publisher(
- fake: faker.Faker, publisher: Publisher, new_getter_run: GetterRun
-) -> Publisher:
- return Publisher.objects.create(
- org_id=publisher.org_id,
- data=publisher.data,
- aggregate=publisher.aggregate,
- quality=publisher.quality,
- getter_run=new_getter_run,
- )
+ return publisher_info
def fake_sourcefile(
fake: faker.Faker,
- publisher: Publisher,
+ getter_run: GetterRun,
+ publisher_info: FakePublisherInfo,
valid: bool = True,
downloads: bool = True,
) -> SourceFile:
@@ -172,14 +118,7 @@ def fake_sourcefile(
"issued": f"{sf_data_year}-06-05",
"license": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/",
"modified": "2024-02-02T14:43:01.000+0000",
- "publisher": {
- "logo": fake.image_url(),
- "name": publisher.name,
- "org_id": publisher.org_id,
- "prefix": publisher.prefix,
- "website": fake.url(),
- "last_published": "2019-11-29",
- },
+ "publisher": publisher_info,
"identifier": fake.uuid4(),
"description": "",
"distribution": [
@@ -199,8 +138,7 @@ def fake_sourcefile(
"acceptable_license": True,
# "datetime_downloaded": "2024-12-01T00:02:41+00:00",
"datetime_downloaded": (
- publisher.getter_run.datetime
- + timedelta(minutes=fake.random_int(1, 60))
+ getter_run.datetime + timedelta(minutes=fake.random_int(1, 60))
).isoformat(),
},
}
@@ -341,7 +279,7 @@ def fake_sourcefile(
sourcefile = SourceFile.objects.create(
data=sf_data,
- getter_run=publisher.getter_run,
+ getter_run=getter_run,
quality=sf_quality,
aggregate=sf_aggregate,
)
@@ -432,7 +370,6 @@ def fake_grant(
grant = Grant.from_data(
data=grant_data,
getter_run=sourcefile.getter_run,
- publisher=sourcefile.get_publisher(),
source_file=sourcefile,
additional_data={},
)
@@ -449,7 +386,6 @@ def copy_grant(
new_grant = Grant.from_data(
data=grant.data,
getter_run=new_getter_run,
- publisher=new_sourcefile.get_publisher(),
source_file=new_sourcefile,
additional_data=grant.additional_data,
)
diff --git a/datastore/tests/test_api.py b/datastore/tests/test_api.py
index 3e24251b..1ea62de5 100644
--- a/datastore/tests/test_api.py
+++ b/datastore/tests/test_api.py
@@ -17,7 +17,7 @@ def test_dashboard_api_overview_grants(self):
"grants": 50,
"GBP": 25047.0,
"publishers": 10,
- "recipientOrganisations": 1,
+ "recipientOrganisations": 2,
"recipientIndividuals": 0,
"funders": 1,
},
@@ -29,7 +29,7 @@ def test_dashboard_api_overview_grants(self):
str(year): (50 if year == 2019 else 0)
for year in range(current_year, current_year - 10, -1)
},
- "orgIdTypes": {},
+ "orgIdTypes": {"COH": 4},
"awardedThisYear": 0,
"awardedLastThreeMonths": 0,
},
@@ -41,7 +41,7 @@ def test_dashboard_api_overview_grants(self):
"hasGrantClassification": 0,
"hasBeneficiaryLocationGeoCode": 100,
"hasRecipientOrgCompanyOrCharityNumber": 0,
- "has50pcExternalOrgId": 100,
+ "has50pcExternalOrgId": 96,
"hasRecipientIndividualsCodelists": 100,
},
}
@@ -57,7 +57,7 @@ def test_dashboard_api_overview_publishers(self):
"grants": 50,
"GBP": 25047.0,
"publishers": 10,
- "recipientOrganisations": 1,
+ "recipientOrganisations": 2,
"recipientIndividuals": 0,
"funders": 1,
},
@@ -72,7 +72,7 @@ def test_dashboard_api_overview_publishers(self):
for year in range(current_year, current_year - 10, -1)
},
"recipientsExternalOrgId": {
- "0% - 10%": 100.0,
+ "0% - 10%": 90.0,
"10% - 20%": 0.0,
"20% - 30%": 0.0,
"30% - 40%": 0.0,
@@ -80,7 +80,7 @@ def test_dashboard_api_overview_publishers(self):
"50% - 60%": 0.0,
"60% - 70%": 0.0,
"70% - 80%": 0.0,
- "80% - 90%": 0.0,
+ "80% - 90%": 10.0,
"90% - 100%": 0.0,
},
},
@@ -92,7 +92,7 @@ def test_dashboard_api_overview_publishers(self):
"hasGrantClassification": 0,
"hasBeneficiaryLocationGeoCode": 100,
"hasRecipientOrgCompanyOrCharityNumber": 0,
- "has50pcExternalOrgId": 0,
+ "has50pcExternalOrgId": 10,
"hasRecipientIndividualsCodelists": 0,
},
}
diff --git a/datastore/tests/test_models.py b/datastore/tests/test_models.py
index e3e12473..9c7c5f78 100644
--- a/datastore/tests/test_models.py
+++ b/datastore/tests/test_models.py
@@ -64,21 +64,22 @@ def test_convenience_fields_from_data(self):
# Mock relations to create a test Grant
grant_gr = db.GetterRun()
- grant_pub = db.Publisher(
- org_id="XI-EXAMPLE-EXAMPLE",
- name="example",
- aggregate={},
- additional_data={},
- data={},
- prefix="example",
+ grant_sf = db.SourceFile(
+ data={
+ "publisher": dict(
+ org_id="XI-EXAMPLE-EXAMPLE",
+ name="example",
+ prefix="example",
+ )
+ },
getter_run=grant_gr,
+ quality={},
+ aggregate={},
)
- grant_sf = db.SourceFile(data={}, getter_run=grant_gr, quality={}, aggregate={})
grant = db.Grant.from_data(
data=data,
getter_run=grant_gr,
- publisher=grant_pub,
source_file=grant_sf,
additional_data={},
)
diff --git a/datastore/tests/test_monitoring_metrics.py b/datastore/tests/test_monitoring_metrics.py
index 56c83809..51ffd0d6 100644
--- a/datastore/tests/test_monitoring_metrics.py
+++ b/datastore/tests/test_monitoring_metrics.py
@@ -36,11 +36,10 @@
from .fake_testdata import (
fake_getter_run,
- fake_publisher,
+ fake_publisher_info,
fake_sourcefile,
fake_grant,
copy_sourcefile,
- copy_publisher,
copy_grant,
fake_grant_org,
)
@@ -132,10 +131,14 @@ def test_new_publisher(self):
# Check that we start with no metrics snapshots
self.assertEqual(PublisherMetricsRecord.objects.count(), 0)
+ publisher_info_1 = fake_publisher_info(fake)
+ publisher_info_2 = fake_publisher_info(fake)
+
# Create first test GetterRun & Metrics
with fake_getter_run(fake) as getter_run_1:
- publisher_1 = fake_publisher(fake, getter_run=getter_run_1)
- sourcefile_1 = fake_sourcefile(fake, publisher=publisher_1)
+ sourcefile_1 = fake_sourcefile(
+ fake, getter_run_1, publisher_info=publisher_info_1
+ )
fake_grant(
fake,
sourcefile=sourcefile_1,
@@ -149,7 +152,6 @@ def test_new_publisher(self):
# Create second GetterRun, with old + new Publishers
with fake_getter_run(fake) as getter_run_2:
- copy_publisher(fake, publisher=publisher_1, new_getter_run=getter_run_2)
copy_sourcefile(
fake,
sourcefile=sourcefile_1,
@@ -157,8 +159,7 @@ def test_new_publisher(self):
copy_grants=True,
)
- publisher_2 = fake_publisher(fake, getter_run_2)
- sourcefile_2 = fake_sourcefile(fake, publisher_2)
+ sourcefile_2 = fake_sourcefile(fake, getter_run_2, publisher_info_2)
fake_grant(
fake,
sourcefile=sourcefile_2,
@@ -186,6 +187,7 @@ def test_sourcefile_downtime(self):
funding_org = fake_grant_org(fake)
recipient_org = fake_grant_org(fake)
+ test_publisher = fake_publisher_info(fake)
# Check that we start with no metrics snapshots
self.assertEqual(PublisherMetricsRecord.objects.count(), 0)
@@ -193,9 +195,8 @@ def test_sourcefile_downtime(self):
# First GetterRun
with fake_getter_run(fake) as getter_run_1:
- test_publisher = fake_publisher(fake, getter_run_1)
test_sourcefile = fake_sourcefile(
- fake, test_publisher, valid=True, downloads=True
+ fake, getter_run_1, test_publisher, valid=True, downloads=True
)
test_sourcefile_identifier = test_sourcefile.data["identifier"]
test_grant = fake_grant(
@@ -219,14 +220,13 @@ def test_sourcefile_downtime(self):
)
# Check that the Publisher doesn't appear in Unavailable Publishers
- self.assertNotIn(test_publisher.prefix, self.get_down_publishers().keys())
+ self.assertNotIn(test_publisher["prefix"], self.get_down_publishers().keys())
# Fake two days of sourcefile downtime
# Run two GetterRuns (as they tend to be about 24 hours apart, but can be slightly less,
# so it can still be less than 1 full day difference after just one)
with fake_getter_run(fake) as getter_run_2:
- copy_publisher(fake, test_publisher, getter_run_2)
copy_sourcefile(
fake,
test_sourcefile,
@@ -237,7 +237,6 @@ def test_sourcefile_downtime(self):
)
with fake_getter_run(fake) as getter_run_3:
- copy_publisher(fake, test_publisher, getter_run_3)
copy_sourcefile(
fake,
test_sourcefile,
@@ -259,17 +258,16 @@ def test_sourcefile_downtime(self):
# Check that the Publisher does now appear in Unavailable Publishers
# along with the relevant SourceFile download URL
down_publishers = self.get_down_publishers()
- self.assertIn(test_publisher.prefix, down_publishers.keys())
+ self.assertIn(test_publisher["prefix"], down_publishers.keys())
self.assertIn(
test_sourcefile.data["distribution"][0]["downloadURL"],
- down_publishers[test_publisher.prefix][
+ down_publishers[test_publisher["prefix"]][
"down_source_files.last_download_attempt_download_url"
],
)
# Fake bringing the sourcefile back up
with fake_getter_run(fake) as getter_run_4:
- copy_publisher(fake, test_publisher, getter_run_4)
test_sourcefile_4 = copy_sourcefile(
fake,
sourcefile=test_sourcefile,
@@ -301,12 +299,12 @@ def test_fuzzy_day_counting(self):
funding_org = fake_grant_org(fake)
recipient_org = fake_grant_org(fake)
+ test_publisher = fake_publisher_info(fake)
# First GetterRun
with fake_getter_run(fake) as getter_run_1:
- test_publisher = fake_publisher(fake, getter_run_1)
test_sourcefile = fake_sourcefile(
- fake, test_publisher, valid=True, downloads=True
+ fake, getter_run_1, test_publisher, valid=True, downloads=True
)
test_sourcefile_identifier = test_sourcefile.data["identifier"]
fake_grant(
@@ -326,7 +324,6 @@ def test_fuzzy_day_counting(self):
# Fake a second getter run, where the getter runs are a bit less than a full 24 hours apart
with fake_getter_run(fake, timestamp_dt=timedelta(hours=21)) as getter_run_2:
- copy_publisher(fake, test_publisher, getter_run_2)
copy_sourcefile(
fake,
test_sourcefile,
@@ -338,7 +335,6 @@ def test_fuzzy_day_counting(self):
# Fake a third getter run, but later the same day - it shouldn't count as another day passing
with fake_getter_run(fake, timestamp_dt=timedelta(hours=12)) as getter_run_3:
- copy_publisher(fake, test_publisher, getter_run_3)
copy_sourcefile(
fake,
test_sourcefile,
@@ -349,17 +345,17 @@ def test_fuzzy_day_counting(self):
)
gr1_sf_metrics = SourceFileMetricsRecord.objects.get(
- publisher_prefix=test_publisher.prefix,
+ publisher_prefix=test_publisher["prefix"],
sourcefile_identifier=test_sourcefile.data["identifier"],
timestamp=getter_run_1.datetime,
)
gr2_sf_metrics = SourceFileMetricsRecord.objects.get(
- publisher_prefix=test_publisher.prefix,
+ publisher_prefix=test_publisher["prefix"],
sourcefile_identifier=test_sourcefile.data["identifier"],
timestamp=getter_run_2.datetime,
)
gr3_sf_metrics = SourceFileMetricsRecord.objects.get(
- publisher_prefix=test_publisher.prefix,
+ publisher_prefix=test_publisher["prefix"],
sourcefile_identifier=test_sourcefile.data["identifier"],
timestamp=getter_run_3.datetime,
)
@@ -383,11 +379,13 @@ def test_remove_funder(self):
funder_a = fake_grant_org(fake)
funder_b = fake_grant_org(fake)
recipient = fake_grant_org(fake)
+ test_publisher = fake_publisher_info(fake)
# Create getter run containing two funders
with fake_getter_run(fake) as getter_run_1:
- test_publisher = fake_publisher(fake, getter_run_1)
- test_sourcefile = fake_sourcefile(fake, publisher=test_publisher)
+ test_sourcefile = fake_sourcefile(
+ fake, getter_run_1, publisher_info=test_publisher
+ )
test_grant_a = fake_grant(
fake, sourcefile=test_sourcefile, funder=funder_a, recipient=recipient
)
@@ -410,7 +408,6 @@ def test_remove_funder(self):
# Create second getter run, removing a publisher
with fake_getter_run(fake) as getter_run_2:
- copy_publisher(fake, test_publisher, getter_run_2)
test_sourcefile_2 = copy_sourcefile(
fake, test_sourcefile, getter_run_2, copy_grants=False
)
@@ -453,6 +450,7 @@ def test_multiple_getterruns_in_one_day(self):
funder = fake_grant_org(fake)
recipient = fake_grant_org(fake)
+ test_publisher = fake_publisher_info(fake)
# Random datetime at least 30 days ago
getter_run_1_datetime = fake.date_time(
@@ -464,8 +462,9 @@ def test_multiple_getterruns_in_one_day(self):
getter_run_1_datetime = getter_run_1_datetime.replace(hour=19)
with fake_getter_run(fake, timestamp=getter_run_1_datetime) as getter_run_1:
- test_publisher = fake_publisher(fake, getter_run_1)
- test_sourcefile = fake_sourcefile(fake, publisher=test_publisher)
+ test_sourcefile = fake_sourcefile(
+ fake, getter_run_1, publisher_info=test_publisher
+ )
fake_grant(
fake,
sourcefile=test_sourcefile,
@@ -477,7 +476,6 @@ def test_multiple_getterruns_in_one_day(self):
with fake_getter_run(
fake, timestamp=getter_run_1.datetime + timedelta(hours=4)
) as getter_run_2:
- copy_publisher(fake, test_publisher, getter_run_2)
test_sourcefile_2 = copy_sourcefile(
fake, test_sourcefile, getter_run_2, copy_grants=False
)
diff --git a/datastore/tests/test_quality_data.py b/datastore/tests/test_quality_data.py
index 67bddbf7..e137935d 100644
--- a/datastore/tests/test_quality_data.py
+++ b/datastore/tests/test_quality_data.py
@@ -153,7 +153,7 @@ def test_create_sourcefile_publisher_quality_data(self):
str(year): (5 if year == 2019 else 0)
for year in range(current_year, current_year - 10, -1)
},
- "orgIdTypes": {},
+ "orgIdTypes": {"COH": 4},
"awardedThisYear": 0,
"awardedLastThreeMonths": 0,
}
diff --git a/tools/view_latest_grant.sql b/tools/view_latest_grant.sql
index a8338aa4..a9523031 100644
--- a/tools/view_latest_grant.sql
+++ b/tools/view_latest_grant.sql
@@ -5,11 +5,12 @@ AS SELECT db_grant.id,
db_grant.data,
db_grant.source_file_id,
db_grant.getter_run_id,
- db_grant.publisher_id,
+ db_publisher.id,
db_grant.additional_data,
db_sourcefile.data as source_data
FROM db_grant
JOIN db_sourcefile_latest ON db_grant.source_file_id = db_sourcefile_latest.sourcefile_id
JOIN db_latest ON db_sourcefile_latest.latest_id = db_latest.id
JOIN db_sourcefile on db_grant.source_file_id = db_sourcefile.id
+ JOIN db_publisher ON db_publisher.prefix = db_sourcefile.data -> 'publisher' ->> 'prefix'
WHERE db_latest.series = 'CURRENT'::text;