From c088e691a53ba4ae73841f397ada1a4100bdf792 Mon Sep 17 00:00:00 2001 From: Rikki Guy Date: Mon, 10 Jun 2024 20:23:23 +0100 Subject: [PATCH 1/4] db: Add non-primary Org Ids to Entities and update test data fixture so tests can continue to run. --- .../sources/find_that_charity.py | 23 +++++++--- datastore/db/fixtures/test_data.json | 2 +- .../commands/manage_entities_data.py | 23 +++++++--- .../db/migrations/0024_auto_20240610_1847.py | 42 +++++++++++++++++++ datastore/db/models.py | 17 ++++++-- 5 files changed, 91 insertions(+), 16 deletions(-) create mode 100644 datastore/db/migrations/0024_auto_20240610_1847.py diff --git a/datastore/additional_data/sources/find_that_charity.py b/datastore/additional_data/sources/find_that_charity.py index 268a96a0..05bb0e19 100644 --- a/datastore/additional_data/sources/find_that_charity.py +++ b/datastore/additional_data/sources/find_that_charity.py @@ -124,17 +124,28 @@ class OrgTypeNotKnownError(Exception): pass -def non_primary_org_ids_map(): - """Returns a dict of all non-primary org-ids and their corresponding primary org-id""" - org_ids = {} +def non_primary_org_ids_lookup_maps(): + """ + Returns a tuple of: + * a dict of all non-primary org-ids mapped to their corresponding primary org-id. + * a dict of all primary org-ids mapped to their corresponding non-primary org-ids. + """ + non_primary_to_primary = {} + primary_to_non_primary = {} + + # [[orgid, orgid], [orgid, orgid] ...] orgs = OrgInfoCache.objects.filter(org_ids__len__gt=1).values_list( "org_ids", flat=True ) - # [[orgid, orgid], [orgid, orgid] ...] + for org in orgs: # [ primary-org-id, secondary-org-id, ...org-id ] for non_primary_org_id in org[1:]: - org_ids[non_primary_org_id] = org[0] # { non_primary_org_id : primary_org_id } + non_primary_to_primary[non_primary_org_id] = org[0] + + if len(org) > 1: + # { primary_org_id : [non_primary_org_ids] } + primary_to_non_primary[org[0]] = org[1:] - return org_ids + return non_primary_to_primary, primary_to_non_primary diff --git a/datastore/db/fixtures/test_data.json b/datastore/db/fixtures/test_data.json index 13cc2137..360c7a28 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"}}, {"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"}}, {"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": "[]"}}, {"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 diff --git a/datastore/db/management/commands/manage_entities_data.py b/datastore/db/management/commands/manage_entities_data.py index 9306bea6..a44c68e7 100644 --- a/datastore/db/management/commands/manage_entities_data.py +++ b/datastore/db/management/commands/manage_entities_data.py @@ -7,7 +7,7 @@ import sys, json -from additional_data.sources.find_that_charity import non_primary_org_ids_map +from additional_data.sources.find_that_charity import non_primary_org_ids_lookup_maps def update_entities(): @@ -23,7 +23,10 @@ def update_entities(): recipient_orgs_bulk = {} funder_orgs_bulk = {} - non_primary_org_ids_map_cache = non_primary_org_ids_map() + ( + non_primary_to_primary_org_ids_lookup, + primary_to_non_primary_org_ids_lookup, + ) = non_primary_org_ids_lookup_maps() print("Analysing latest best grant data for entities") @@ -31,12 +34,17 @@ def update_entities(): for recipient in grant.get("recipientOrganization", []): # If the org-id provided is a non-primary org-id return the primary # otherwise return the specified org-id - org_id = non_primary_org_ids_map_cache.get(recipient["id"], recipient["id"]) + org_id = non_primary_to_primary_org_ids_lookup.get( + recipient["id"], recipient["id"] + ) + non_primary_org_ids = primary_to_non_primary_org_ids_lookup.get(org_id, []) try: recipient_ob = recipient_orgs_bulk[org_id] except KeyError: - recipient_ob = db.Recipient(org_id=org_id) + recipient_ob = db.Recipient( + org_id=org_id, non_primary_org_ids=non_primary_org_ids + ) recipient_orgs_bulk[org_id] = recipient_ob recipient_ob.add_name(recipient["name"]) @@ -47,13 +55,16 @@ def update_entities(): for funder in grant["fundingOrganization"]: # If the org-id provided is a non-primary org-id return the primary # otherwise return the specified org-id - org_id = non_primary_org_ids_map_cache.get(funder["id"], funder["id"]) + org_id = non_primary_to_primary_org_ids_lookup.get( + funder["id"], funder["id"] + ) + non_primary_org_ids = primary_to_non_primary_org_ids_lookup.get(org_id, []) try: funder_ob = funder_orgs_bulk[org_id] except KeyError: funder_ob = db.Funder( - org_id=org_id, + org_id=org_id, non_primary_org_ids=non_primary_org_ids ) funder_orgs_bulk[org_id] = funder_ob diff --git a/datastore/db/migrations/0024_auto_20240610_1847.py b/datastore/db/migrations/0024_auto_20240610_1847.py new file mode 100644 index 00000000..1a1e8e7e --- /dev/null +++ b/datastore/db/migrations/0024_auto_20240610_1847.py @@ -0,0 +1,42 @@ +# Generated by Django 3.2.16 on 2024-06-10 18:47 + +import django.contrib.postgres.fields +import django.contrib.postgres.indexes +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("db", "0023_auto_20240318_1952"), + ] + + operations = [ + migrations.AddField( + model_name="funder", + name="non_primary_org_ids", + field=django.contrib.postgres.fields.ArrayField( + base_field=models.TextField(), default=[], size=None + ), + preserve_default=False, + ), + migrations.AddField( + model_name="recipient", + name="non_primary_org_ids", + field=django.contrib.postgres.fields.ArrayField( + base_field=models.TextField(), default=[], size=None + ), + preserve_default=False, + ), + migrations.AddIndex( + model_name="funder", + index=django.contrib.postgres.indexes.GinIndex( + fields=["non_primary_org_ids"], name="db_funder_non_pri_745675_gin" + ), + ), + migrations.AddIndex( + model_name="recipient", + index=django.contrib.postgres.indexes.GinIndex( + fields=["non_primary_org_ids"], name="db_recipien_non_pri_0e0ccb_gin" + ), + ), + ] diff --git a/datastore/db/models.py b/datastore/db/models.py index 529d279c..c4685cf7 100644 --- a/datastore/db/models.py +++ b/datastore/db/models.py @@ -231,7 +231,8 @@ class Entity(models.Model): class Meta: abstract = True - org_id = models.CharField(max_length=200) # Unique + org_id = models.CharField(max_length=200) # Primary Org ID, Unique + # Allowed to be null or blank for progressive building of the record name = models.TextField(null=True, blank=True) @@ -359,7 +360,12 @@ class Meta: constraints = [ models.UniqueConstraint(fields=["org_id"], name="recipient_unique_org_id") ] - indexes = [Index(fields=["org_id", "name"])] + indexes = [ + GinIndex(fields=["non_primary_org_ids"]), + Index(fields=["org_id", "name"]), + ] + + non_primary_org_ids = ArrayField(models.TextField()) class Funder(Entity): @@ -367,7 +373,12 @@ class Meta: constraints = [ models.UniqueConstraint(fields=["org_id"], name="funder_unique_org_id") ] - indexes = [Index(fields=["org_id", "name"])] + indexes = [ + GinIndex(fields=["non_primary_org_ids"]), + Index(fields=["org_id", "name"]), + ] + + non_primary_org_ids = ArrayField(models.TextField()) class Grant(models.Model): From 33d6750c0bfda3b1b31ad50f565587ea176a2636 Mon Sep 17 00:00:00 2001 From: Rikki Guy Date: Mon, 15 Jul 2024 16:12:30 +0100 Subject: [PATCH 2/4] api: Enable Org lookup by non-primary ID and display linked org IDs in Organisation detail. --- datastore/api/org/models.py | 54 +++++++++++++++++++++++++++------ datastore/tests/test_org_api.py | 4 ++- 2 files changed, 47 insertions(+), 11 deletions(-) diff --git a/datastore/api/org/models.py b/datastore/api/org/models.py index 9a4a3787..1631aec9 100644 --- a/datastore/api/org/models.py +++ b/datastore/api/org/models.py @@ -1,7 +1,8 @@ -from typing import Optional from dataclasses import dataclass +from typing import Optional, List + from django.core.exceptions import ObjectDoesNotExist, MultipleObjectsReturned -from django.db.models.query import QuerySet +from django.db.models.query import QuerySet, Q import db.models as db @@ -9,7 +10,7 @@ @dataclass class OrganisationRef: """ - Represents a link/reference to an Organisation. + Represents a reference to an Organisation, i.e. an object with an org_id. """ org_id: str @@ -30,6 +31,7 @@ class Organisation: funder: Optional[db.Funder] recipient: Optional[db.Recipient] publisher: Optional[db.Publisher] + linked_orgs: List[OrganisationRef] def __post_init__(self): if self.org_id == "": @@ -64,10 +66,12 @@ def exists( getter_run__in=db.GetterRun.objects.in_use() ) - if funder_queryset.filter(org_id=org_id).exists(): + id_query = Q(org_id=org_id) | Q(non_primary_org_ids__contains=[org_id]) + + if funder_queryset.filter(id_query).exists(): return True - if recipient_queryset.filter(org_id=org_id).exists(): + if recipient_queryset.filter(id_query).exists(): return True if publisher_queryset.order_by().filter(org_id=org_id).exists(): @@ -103,21 +107,45 @@ def get( ) name = None + primary_org_id = org_id + linked_org_ids = set() + + id_query = Q(org_id=org_id) | Q(non_primary_org_ids__contains=[org_id]) + + # Note that we are searching by both org_id (Primary Org ID) and Non-primary Org IDs + # If the user searches by a non-primary ID, we will instead show info about the Primary Org. + # (Recipient and Funder objects are only created for primary IDs) # is org a Recipient? try: - recipient = recipient_queryset.get(org_id=org_id) + recipients = recipient_queryset.filter(id_query) + # For now, replicate GrantNav behaviour by taking the first filter result as Primary + # https://github.com/ThreeSixtyGiving/grantnav/blob/ee696779d110ab491daa6694f5344c07dbbf98d2/grantnav/frontend/views.py#L1196 + recipient = recipients[0] name = recipient.name + primary_org_id = recipient.org_id + + for rt in recipients: + linked_org_ids.add(rt.org_id) + linked_org_ids.update(rt.non_primary_org_ids) - except db.Recipient.DoesNotExist: + except IndexError: recipient = None # is org a Funder? try: - funder = funder_queryset.get(org_id=org_id) + funders = funder_queryset.filter(id_query) + # For now, replicate GrantNav behaviour by taking the first filter result as Primary + # https://github.com/ThreeSixtyGiving/grantnav/blob/ee696779d110ab491daa6694f5344c07dbbf98d2/grantnav/frontend/views.py#L1205 + funder = funders[0] name = funder.name + primary_org_id = funder.org_id + + for fr in funders: + linked_org_ids.add(fr.org_id) + linked_org_ids.update(fr.non_primary_org_ids) - except db.Funder.DoesNotExist: + except IndexError: funder = None # is org a Publisher? @@ -126,18 +154,24 @@ def get( "-getter_run__datetime" )[0] name = publisher.name + # Publishers take precedence over Funders / Recipients when it comes to primary vs non-primary ID priority + primary_org_id = publisher.org_id except IndexError: publisher = None if funder is None and recipient is None and publisher is None: raise Organisation.DoesNotExist + # Don't include the primary org itsself in linked_orgs + linked_org_ids.discard(primary_org_id) + return Organisation( - org_id=org_id, + org_id=primary_org_id, name=name, funder=funder, recipient=recipient, publisher=publisher, + linked_orgs=list(OrganisationRef(org_id=oid) for oid in linked_org_ids), ) diff --git a/datastore/tests/test_org_api.py b/datastore/tests/test_org_api.py index 2bdbf35a..b89c9204 100644 --- a/datastore/tests/test_org_api.py +++ b/datastore/tests/test_org_api.py @@ -74,6 +74,7 @@ def test_funder_detail(self): "publisher": None, "org_id": self.funder_org_id, "name": self.funder_org_name, + "linked_orgs": [], } data = self.client.get( @@ -201,6 +202,7 @@ def test_recipient_org_detail(self): ) expected_org_data = { + "linked_orgs": [], "self": "http://testserver" + expected_self_url, "grants_made": "http://testserver" + expected_grants_made_url, "grants_received": "http://testserver" + expected_received_made_url, @@ -330,7 +332,6 @@ def test_recipient_grants_made(self): # def test_publisher_detail(self): - expected_self_url = reverse_lazy( "api:organisation-detail", kwargs={"org_id": self.publisher_org_id} ) @@ -351,6 +352,7 @@ def test_publisher_detail(self): "publisher": {"prefix": "360g-Ap0inaap5e"}, "org_id": self.publisher_org_id, "name": self.publisher_org_name, + "linked_orgs": [], } data = self.client.get( From 1c787ea02d98de292f987f453e9d5a177b4f3eb2 Mon Sep 17 00:00:00 2001 From: Rikki Guy Date: Thu, 1 Aug 2024 15:34:10 +0100 Subject: [PATCH 3/4] 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/tests/test_org_api.py | 26 ++++++++++++++++++++++---- datastore/tests/test_quality_data.py | 2 +- 4 files changed, 36 insertions(+), 10 deletions(-) diff --git a/datastore/api/org/api.py b/datastore/api/org/api.py index 2988d97f..616bba1e 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 360c7a28..349727cd 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/tests/test_org_api.py b/datastore/tests/test_org_api.py index b89c9204..b1f0c68f 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( diff --git a/datastore/tests/test_quality_data.py b/datastore/tests/test_quality_data.py index 7c93d12e..9de10a75 100644 --- a/datastore/tests/test_quality_data.py +++ b/datastore/tests/test_quality_data.py @@ -32,7 +32,7 @@ def test_create_sourcefile_publisher_quality_data(self): expected_sourcefile_aggregate = { "count": 5, - "recipient_organisations": ["360G-example-a"], + "recipient_organisations": ["360G-example-a", "360G-example-nonprimary"], "recipient_individuals": 0, "funders": ["GB-example-b"], "max_award_date": "2019-10-03", From b92e5d4c5cdb971fecead6c0e94865eba391682c Mon Sep 17 00:00:00 2001 From: Rikki Guy Date: Tue, 6 Aug 2024 15:21:33 +0100 Subject: [PATCH 4/4] tests: Sort aggregate org-ids to be deterministic Non-deterministic ordering of aggregate org-ids caused tests to intermittantly fail. --- datastore/data_quality/quality_data.py | 10 +++++----- datastore/tests/test_quality_data.py | 4 +++- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/datastore/data_quality/quality_data.py b/datastore/data_quality/quality_data.py index 23abc2fb..93ffaf79 100644 --- a/datastore/data_quality/quality_data.py +++ b/datastore/data_quality/quality_data.py @@ -106,16 +106,19 @@ def create(grants): ], } + # Sort recipient / funder org-id lists to be deterministic for tests aggregates = { "count": cove_results["grants_aggregates"]["count"], "recipient_organisations": list( - cove_results["grants_aggregates"]["distinct_recipient_org_identifier"] + sorted( + cove_results["grants_aggregates"]["distinct_recipient_org_identifier"] + ) ), "recipient_individuals": cove_results["grants_aggregates"][ "recipient_individuals_count" ], "funders": list( - cove_results["grants_aggregates"]["distinct_funding_org_identifier"] + sorted(cove_results["grants_aggregates"]["distinct_funding_org_identifier"]) ), "max_award_date": cove_results["grants_aggregates"]["max_award_date"], "min_award_date": cove_results["grants_aggregates"]["min_award_date"], @@ -432,7 +435,6 @@ def get_pc_publishers_publishing_in_last(self, delta): ) def get_pc_publishers_with_recipient_ext_org(self): - ret = {} total_publishers = self.get_total_publishers() @@ -468,7 +470,6 @@ def get_pc_publishers_with_recipient_ext_org(self): return ret def get_total_grants_awarded_in_last_ten_years(self): - this_year_int = datetime.now().year award_years = {} @@ -485,7 +486,6 @@ def get_total_grants_awarded_in_last_ten_years(self): return award_years def get_pc_publishers_with_grants_awarded_in_last_ten_years(self): - this_year_int = datetime.now().year award_years = {} diff --git a/datastore/tests/test_quality_data.py b/datastore/tests/test_quality_data.py index 9de10a75..082a774e 100644 --- a/datastore/tests/test_quality_data.py +++ b/datastore/tests/test_quality_data.py @@ -32,7 +32,9 @@ def test_create_sourcefile_publisher_quality_data(self): expected_sourcefile_aggregate = { "count": 5, - "recipient_organisations": ["360G-example-a", "360G-example-nonprimary"], + "recipient_organisations": sorted( + ["360G-example-a", "360G-example-nonprimary"] + ), "recipient_individuals": 0, "funders": ["GB-example-b"], "max_award_date": "2019-10-03",