From 5dd7d74995701b766c4fb763d97d38dd644797d0 Mon Sep 17 00:00:00 2001 From: Rikki Guy Date: Thu, 1 Aug 2024 15:34:10 +0100 Subject: [PATCH] api: Enable fetching Grants by non-primay OrgIDs This commit enables fetching Grant data by the non-primary OrgID of a Recipient of Funding Organisation. --- datastore/api/org/api.py | 16 ++++++++++++---- datastore/db/fixtures/test_data.json | 2 +- datastore/db/models.py | 10 +++++----- datastore/tests/test_org_api.py | 26 ++++++++++++++++++++++---- 4 files changed, 40 insertions(+), 14 deletions(-) diff --git a/datastore/api/org/api.py b/datastore/api/org/api.py index 2988d97..616bba1 100644 --- a/datastore/api/org/api.py +++ b/datastore/api/org/api.py @@ -110,12 +110,16 @@ def get_queryset(self): org_id = self.kwargs.get("org_id") # Raise 404 if the Org doesn't exist - if not models.Organisation.exists(org_id): + try: + org = models.Organisation.get(org_id) + except models.Organisation.DoesNotExist: raise rest_framework.exceptions.NotFound() + org_ids = [org.org_id] + [lo.org_id for lo in org.linked_orgs] + return ( db.Grant.objects.filter(source_file__latest__series=db.Latest.CURRENT) - .filter(funding_org_ids__contains=[org_id]) + .filter(funding_org_ids__overlap=org_ids) .select_related("source_file") ) @@ -135,11 +139,15 @@ def get_queryset(self): org_id = self.kwargs.get("org_id") # Raise 404 if the Org doesn't exist - if not models.Organisation.exists(org_id): + try: + org = models.Organisation.get(org_id) + except models.Organisation.DoesNotExist: raise rest_framework.exceptions.NotFound() + org_ids = [org.org_id] + [lo.org_id for lo in org.linked_orgs] + return ( db.Grant.objects.filter(source_file__latest__series=db.Latest.CURRENT) - .filter(recipient_org_ids__contains=[org_id]) + .filter(recipient_org_ids__overlap=org_ids) .select_related("source_file") ) diff --git a/datastore/db/fixtures/test_data.json b/datastore/db/fixtures/test_data.json index 360c7a2..349727c 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": 4, "fields": {"org_id": "360G-example-a", "name": "Receive an example grant", "aggregate": {"grants": 50, "currencies": {"GBP": {"avg": 500.94, "max": 990, "min": 46, "total": 25047, "grants": 50}}, "maxAwardDate": "2019-10-03", "minAwardDate": "2019-10-03"}, "additional_data": {"alternative_names": []}, "source": "GRANT", "non_primary_org_ids": "[]"}}, {"model": "db.funder", "pk": 4, "fields": {"org_id": "GB-example-b", "name": "Funding for examples", "aggregate": {"grants": 50, "currencies": {"GBP": {"avg": 500.94, "max": 990, "min": 46, "total": 25047, "grants": 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": "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": 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": "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": 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": "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": 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": "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": 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-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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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]}}] \ 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": 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": 4, "fields": {"org_id": "360G-example-a", "name": "Receive an example grant", "aggregate": {"grants": 50, "currencies": {"GBP": {"avg": 500.94, "max": 990, "min": 46, "total": 25047, "grants": 50}}, "maxAwardDate": "2019-10-03", "minAwardDate": "2019-10-03"}, "additional_data": {"alternative_names": []}, "source": "GRANT", "non_primary_org_ids": "[\"360G-example-nonprimary\"]"}}, {"model": "db.funder", "pk": 4, "fields": {"org_id": "GB-example-b", "name": "Funding for examples", "aggregate": {"grants": 50, "currencies": {"GBP": {"avg": 500.94, "max": 990, "min": 46, "total": 25047, "grants": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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": "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": 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]}}] \ No newline at end of file diff --git a/datastore/db/models.py b/datastore/db/models.py index 0d14c66..c4685cf 100644 --- a/datastore/db/models.py +++ b/datastore/db/models.py @@ -1,13 +1,13 @@ +import datetime from typing import Dict, Any -from django.db.models import JSONField, Index -from django.db import connection, models -from django.db.utils import DataError + from django.contrib.postgres.fields import ArrayField from django.contrib.postgres.indexes import GinIndex, BTreeIndex +from django.db import connection, models +from django.db.models import JSONField, Index +from django.db.utils import DataError from django.utils import timezone -import datetime - class Latest(models.Model): """Latest best data we have""" diff --git a/datastore/tests/test_org_api.py b/datastore/tests/test_org_api.py index b89c920..b1f0c68 100644 --- a/datastore/tests/test_org_api.py +++ b/datastore/tests/test_org_api.py @@ -1,9 +1,8 @@ import datetime -from django.urls import reverse_lazy -from django.test import TestCase from django.core.management import call_command - +from django.test import TestCase +from django.urls import reverse_lazy current_year = datetime.date.today().year @@ -21,6 +20,7 @@ def setUpTestData(cls): funder_grant_id = "360G-kahM5Ooc2u" recipient_org_id = "360G-example-a" + recipient_nonprimary_org_id = "360G-example-nonprimary" recipient_org_name = "Receive an example grant" recipient_grant_id = "360G-Eiz4Veij8o" @@ -202,7 +202,7 @@ def test_recipient_org_detail(self): ) expected_org_data = { - "linked_orgs": [], + "linked_orgs": [{"org_id": "360G-example-nonprimary"}], "self": "http://testserver" + expected_self_url, "grants_made": "http://testserver" + expected_grants_made_url, "grants_received": "http://testserver" + expected_received_made_url, @@ -226,6 +226,7 @@ def test_recipient_org_detail(self): "name": self.recipient_org_name, } + # Lookup by primary org ID data = self.client.get( f"/api/v1/org/{self.recipient_org_id}/", headers={"accept": "application/json"}, @@ -233,6 +234,14 @@ def test_recipient_org_detail(self): self.assertEqual(data, expected_org_data) + # Lookup by non-primary org ID + data = self.client.get( + f"/api/v1/org/{self.recipient_nonprimary_org_id}/", + headers={"accept": "application/json"}, + ).json() + + self.assertEqual(data, expected_org_data) + def test_recipient_grants_received(self): """Assert that the Recipient gets the expected grant.""" @@ -318,6 +327,15 @@ def test_recipient_grants_received(self): self.assertIn(self.recipient_grant_id, grants) self.assertEqual(expected_grant_data, grants[self.recipient_grant_id]) + def test_recipient_nonprimary_grants_received(self): + # Check that searching by a non-primary OrgID successfully returns results + data = self.client.get( + f"/api/v1/org/{self.recipient_nonprimary_org_id}/grants_received/", + headers={"accept": "application/json"}, + ).json() + + self.assertEqual(data["count"], 50) + def test_recipient_grants_made(self): """A Recipient-only Org should not make any grants.""" data = self.client.get(