diff --git a/backend/app/models/category.rb b/backend/app/models/category.rb index fb045c5f6..1a3245506 100644 --- a/backend/app/models/category.rb +++ b/backend/app/models/category.rb @@ -3,7 +3,7 @@ class Category TYPES = %w[ sustainable-agrosystems - tourism-and-recreation + sustainable-tourism forestry-and-agroforestry non-timber-forest-production human-capital-and-inclusion @@ -11,7 +11,7 @@ class Category COLORS = { "sustainable-agrosystems": "#E7C343", - "tourism-and-recreation": "#4492E5", + "sustainable-tourism": "#4492E5", "forestry-and-agroforestry": "#E57D57", "non-timber-forest-production": "#404B9A", "human-capital-and-inclusion": "#A0616A" diff --git a/backend/config/locales/zu.yml b/backend/config/locales/zu.yml index 4affd2b0c..b7d6314ee 100644 --- a/backend/config/locales/zu.yml +++ b/backend/config/locales/zu.yml @@ -401,8 +401,8 @@ zu: sustainable-agrosystems: name: Sustainable Agrosystems description: Sustainable and regenerative agriculture, fishing, and aquaculture as well as manufacturing of derived subproducts. - tourism-and-recreation: - name: Tourism and Recreation + sustainable-tourism: + name: Sustainable Tourism description: Accommodation, travel, transportation, hospitality, visitor experiences and eco-tourism projects. forestry-and-agroforestry: name: Forestry and Agroforestry diff --git a/backend/db/migrate/20231123093623_change_tourism_and_recreation_to_sustainable_tourism.rb b/backend/db/migrate/20231123093623_change_tourism_and_recreation_to_sustainable_tourism.rb new file mode 100644 index 000000000..7b6699426 --- /dev/null +++ b/backend/db/migrate/20231123093623_change_tourism_and_recreation_to_sustainable_tourism.rb @@ -0,0 +1,35 @@ +class ChangeTourismAndRecreationToSustainableTourism < ActiveRecord::Migration[7.0] + def up + Project.where(category: "tourism-and-recreation").update_all(category: "sustainable-tourism") + + [Investor, ProjectDeveloper].each do |model| + records_to_upsert = model.where("categories @> ?", "{tourism-and-recreation}") + .map do |record| + new_categories = record.categories.map do |category| + category == "tourism-and-recreation" ? "sustainable-tourism" : category + end + + record.attributes.merge(categories: new_categories) + end + + model.upsert_all(records_to_upsert, unique_by: :id) unless records_to_upsert.empty? + end + end + + def down + Project.where(category: "sustainable-tourism").update_all(category: "tourism-and-recreation") + + [Investor, ProjectDeveloper].each do |model| + records_to_upsert = model.where("categories @> ?", "{sustainable-tourism}") + .map do |record| + new_categories = record.categories.map do |category| + category == "sustainable-tourism" ? "tourism-and-recreation" : category + end + + record.attributes.merge(categories: new_categories) + end + + model.upsert_all(records_to_upsert, unique_by: :id) unless records_to_upsert.empty? + end + end +end diff --git a/backend/db/schema.rb b/backend/db/schema.rb index bf40aeab0..95f415c90 100644 --- a/backend/db/schema.rb +++ b/backend/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[7.0].define(version: 2023_11_20_155058) do +ActiveRecord::Schema[7.0].define(version: 2023_11_23_093623) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" enable_extension "postgis" diff --git a/backend/spec/fixtures/snapshots/api/v1/accounts-investor-create.json b/backend/spec/fixtures/snapshots/api/v1/accounts-investor-create.json index 352d0a2e5..d8306225f 100644 --- a/backend/spec/fixtures/snapshots/api/v1/accounts-investor-create.json +++ b/backend/spec/fixtures/snapshots/api/v1/accounts-investor-create.json @@ -15,7 +15,7 @@ "investor_type": "investor", "categories": [ "sustainable-agrosystems", - "tourism-and-recreation" + "sustainable-tourism" ], "ticket_sizes": [ "small-grants" diff --git a/backend/spec/fixtures/snapshots/api/v1/accounts-investor-update.json b/backend/spec/fixtures/snapshots/api/v1/accounts-investor-update.json index f32534599..363b249e5 100644 --- a/backend/spec/fixtures/snapshots/api/v1/accounts-investor-update.json +++ b/backend/spec/fixtures/snapshots/api/v1/accounts-investor-update.json @@ -15,7 +15,7 @@ "investor_type": "investor", "categories": [ "sustainable-agrosystems", - "tourism-and-recreation" + "sustainable-tourism" ], "ticket_sizes": [ "small-grants" diff --git a/backend/spec/fixtures/snapshots/api/v1/accounts-project-developer-create.json b/backend/spec/fixtures/snapshots/api/v1/accounts-project-developer-create.json index cb0a58f69..cfdee2361 100644 --- a/backend/spec/fixtures/snapshots/api/v1/accounts-project-developer-create.json +++ b/backend/spec/fixtures/snapshots/api/v1/accounts-project-developer-create.json @@ -15,7 +15,7 @@ "project_developer_type": "ngo", "categories": [ "sustainable-agrosystems", - "tourism-and-recreation" + "sustainable-tourism" ], "impacts": [ "biodiversity", diff --git a/backend/spec/fixtures/snapshots/api/v1/accounts-project-developer-update.json b/backend/spec/fixtures/snapshots/api/v1/accounts-project-developer-update.json index 2cfa995d4..aaa601342 100644 --- a/backend/spec/fixtures/snapshots/api/v1/accounts-project-developer-update.json +++ b/backend/spec/fixtures/snapshots/api/v1/accounts-project-developer-update.json @@ -15,7 +15,7 @@ "project_developer_type": "ngo", "categories": [ "sustainable-agrosystems", - "tourism-and-recreation" + "sustainable-tourism" ], "impacts": [ "biodiversity", diff --git a/backend/spec/fixtures/snapshots/api/v1/enums.json b/backend/spec/fixtures/snapshots/api/v1/enums.json index 49001196e..7769e8f37 100644 --- a/backend/spec/fixtures/snapshots/api/v1/enums.json +++ b/backend/spec/fixtures/snapshots/api/v1/enums.json @@ -10,10 +10,10 @@ } }, { - "id": "tourism-and-recreation", + "id": "sustainable-tourism", "type": "category", "attributes": { - "name": "Tourism and Recreation", + "name": "Sustainable Tourism", "color": "#4492E5", "description": "Accommodation, travel, transportation, hospitality, visitor experiences and eco-tourism projects." } diff --git a/backend/spec/fixtures/snapshots/api/v1/get-project-developer-approved-account.json b/backend/spec/fixtures/snapshots/api/v1/get-project-developer-approved-account.json index a2cad44b9..9531323a6 100644 --- a/backend/spec/fixtures/snapshots/api/v1/get-project-developer-approved-account.json +++ b/backend/spec/fixtures/snapshots/api/v1/get-project-developer-approved-account.json @@ -14,7 +14,7 @@ "mission": "Yellow Banana", "project_developer_type": "ngo", "categories": [ - "tourism-and-recreation" + "sustainable-tourism" ], "impacts": [ "climate", diff --git a/backend/spec/fixtures/snapshots/api/v1/get-project-developer.json b/backend/spec/fixtures/snapshots/api/v1/get-project-developer.json index 63debfb8a..3e3a1c3a0 100644 --- a/backend/spec/fixtures/snapshots/api/v1/get-project-developer.json +++ b/backend/spec/fixtures/snapshots/api/v1/get-project-developer.json @@ -14,7 +14,7 @@ "mission": "Yellow Banana", "project_developer_type": "ngo", "categories": [ - "tourism-and-recreation" + "sustainable-tourism" ], "impacts": [ "climate", diff --git a/backend/spec/fixtures/snapshots/api/v1/project_developers.json b/backend/spec/fixtures/snapshots/api/v1/project_developers.json index cc3f04339..7a6fb357c 100644 --- a/backend/spec/fixtures/snapshots/api/v1/project_developers.json +++ b/backend/spec/fixtures/snapshots/api/v1/project_developers.json @@ -429,7 +429,7 @@ "mission": "Yellow Banana", "project_developer_type": "ngo", "categories": [ - "tourism-and-recreation" + "sustainable-tourism" ], "impacts": [ "climate", diff --git a/backend/spec/models/project_spec.rb b/backend/spec/models/project_spec.rb index be53acf4b..43eb18e0f 100644 --- a/backend/spec/models/project_spec.rb +++ b/backend/spec/models/project_spec.rb @@ -361,7 +361,7 @@ describe "#category_index" do before do create(:project, category: "sustainable-agrosystems") - create(:project, category: "tourism-and-recreation") + create(:project, category: "sustainable-tourism") create(:project, category: "forestry-and-agroforestry") end @@ -369,13 +369,13 @@ it "correctly by category name asc" do q = Project.ransack q.sorts = "category_localized asc" - expect(q.result.pluck(:category)).to eq(["forestry-and-agroforestry", "sustainable-agrosystems", "tourism-and-recreation"]) + expect(q.result.pluck(:category)).to eq(["forestry-and-agroforestry", "sustainable-agrosystems", "sustainable-tourism"]) end it "correctly by category name desc" do q = Project.ransack q.sorts = "category_localized desc" - expect(q.result.pluck(:category)).to eq(["tourism-and-recreation", "sustainable-agrosystems", "forestry-and-agroforestry"]) + expect(q.result.pluck(:category)).to eq(["sustainable-tourism", "sustainable-agrosystems", "forestry-and-agroforestry"]) end end end diff --git a/backend/spec/requests/api/v1/accounts/investors_spec.rb b/backend/spec/requests/api/v1/accounts/investors_spec.rb index 2ac68406d..3f42f202e 100644 --- a/backend/spec/requests/api/v1/accounts/investors_spec.rb +++ b/backend/spec/requests/api/v1/accounts/investors_spec.rb @@ -100,7 +100,7 @@ previously_invested: true, contact_email: "contact@example.com", contact_phone: "123456789", - categories: ["sustainable-agrosystems", "tourism-and-recreation"], + categories: ["sustainable-agrosystems", "sustainable-tourism"], impacts: ["biodiversity", "climate"], ticket_sizes: ["small-grants"], instrument_types: ["grant"], @@ -202,7 +202,7 @@ previously_invested: true, contact_email: "contact@example.com", contact_phone: "123456789", - categories: ["sustainable-agrosystems", "tourism-and-recreation"], + categories: ["sustainable-agrosystems", "sustainable-tourism"], impacts: ["biodiversity", "climate"], ticket_sizes: ["small-grants"], instrument_types: ["grant"], diff --git a/backend/spec/requests/api/v1/accounts/project_developers_spec.rb b/backend/spec/requests/api/v1/accounts/project_developers_spec.rb index 84af6f41d..df9e1d526 100644 --- a/backend/spec/requests/api/v1/accounts/project_developers_spec.rb +++ b/backend/spec/requests/api/v1/accounts/project_developers_spec.rb @@ -94,7 +94,7 @@ entity_legal_registration_number: "564823570", mission: "Mission", contact_email: "contact@example.com", - categories: ["sustainable-agrosystems", "tourism-and-recreation"], + categories: ["sustainable-agrosystems", "sustainable-tourism"], impacts: ["biodiversity", "climate"], priority_landscape_ids: [priority_landscape.id], locale: :en @@ -192,7 +192,7 @@ project_developer_type: "ngo", entity_legal_registration_number: "564823570", mission: "Mission", - categories: ["sustainable-agrosystems", "tourism-and-recreation"], + categories: ["sustainable-agrosystems", "sustainable-tourism"], impacts: ["biodiversity", "climate"], priority_landscape_ids: [priority_landscape.id], locale: :en diff --git a/backend/spec/requests/api/v1/project_developers_spec.rb b/backend/spec/requests/api/v1/project_developers_spec.rb index d7a4cfb2c..522240f77 100644 --- a/backend/spec/requests/api/v1/project_developers_spec.rb +++ b/backend/spec/requests/api/v1/project_developers_spec.rb @@ -2,7 +2,7 @@ RSpec.describe "API V1 Project Developers", type: :request do before_all do - @project_developer = create(:project_developer, :with_involved_projects, mission: "Yellow Banana", number_of_projects: 2, categories: ["tourism-and-recreation"]) + @project_developer = create(:project_developer, :with_involved_projects, mission: "Yellow Banana", number_of_projects: 2, categories: ["sustainable-tourism"]) @draft_project = create(:project, :draft, project_developer: @project_developer) create_list(:project_developer, 6, categories: %w[forestry-and-agroforestry non-timber-forest-production]) @unapproved_project_developer = create(:project_developer, account: create(:account, review_status: :unapproved, users: [create(:user)])) diff --git a/backend/spec/services/api/filterer_spec.rb b/backend/spec/services/api/filterer_spec.rb index 3acc859fd..973a012d8 100644 --- a/backend/spec/services/api/filterer_spec.rb +++ b/backend/spec/services/api/filterer_spec.rb @@ -20,7 +20,7 @@ let!(:correct_project) do create :project, category: "sustainable-agrosystems", sdgs: [1, 2], instrument_types: ["loan"], ticket_size: "scaling" end - let!(:different_category_project) { create :project, category: "tourism-and-recreation" } + let!(:different_category_project) { create :project, category: "sustainable-tourism" } let!(:different_sdgs_project) { create :project, sdgs: [4, 5] } let!(:different_instrument_type_project) { create :project, instrument_types: ["grant"] } let!(:different_ticket_size_project) { create :project, ticket_size: "prototyping" } @@ -134,7 +134,7 @@ let!(:correct_project_developer) do create :project_developer, categories: ["sustainable-agrosystems"], impacts: ["climate"] end - let!(:different_category_project_developer) { create :project_developer, categories: ["tourism-and-recreation"] } + let!(:different_category_project_developer) { create :project_developer, categories: ["sustainable-tourism"] } let!(:different_impact_project_developer) { create :project_developer, impacts: ["water"] } it "returns only correct project developers" do @@ -245,7 +245,7 @@ create :investor, categories: ["sustainable-agrosystems"], sdgs: [1, 2], instrument_types: ["loan"], ticket_sizes: ["scaling"], impacts: ["climate"] end - let!(:different_category_investor) { create :investor, categories: ["tourism-and-recreation"] } + let!(:different_category_investor) { create :investor, categories: ["sustainable-tourism"] } let!(:different_sdgs_investor) { create :investor, sdgs: [4, 5] } let!(:different_instrument_type_investor) { create :investor, instrument_types: ["grant"] } let!(:different_ticket_size_investor) { create :investor, ticket_sizes: ["prototyping"] } diff --git a/backend/spec/system/backoffice/investors_spec.rb b/backend/spec/system/backoffice/investors_spec.rb index 33450b006..3c8171b34 100644 --- a/backend/spec/system/backoffice/investors_spec.rb +++ b/backend/spec/system/backoffice/investors_spec.rb @@ -276,7 +276,7 @@ fill_in "Instagram", with: "https://instagram.com/new-profile" fill_in "Facebook", with: "https://facebook.com/new-profile" fill_in "Twitter", with: "https://twitter.com/new-profile" - check t("enums.category.tourism-and-recreation.name") + check t("enums.category.sustainable-tourism.name") uncheck t("enums.category.forestry-and-agroforestry.name") uncheck t("enums.ticket_size.validation.name") check t("enums.ticket_size.small-grants.name") @@ -306,7 +306,7 @@ expect(approved_investor.account.facebook).to eq("https://facebook.com/new-profile") expect(approved_investor.account.twitter).to eq("https://twitter.com/new-profile") expect(approved_investor.previously_invested).to eq(false) - expect(approved_investor.categories.sort).to eq(%w[non-timber-forest-production tourism-and-recreation]) + expect(approved_investor.categories.sort).to eq(%w[non-timber-forest-production sustainable-tourism]) expect(approved_investor.ticket_sizes.sort).to eq(%w[scaling small-grants]) expect(approved_investor.instrument_types).to eq(%w[loan]) expect(approved_investor.sdgs.sort).to eq([1, 2, 3]) diff --git a/backend/spec/system/backoffice/project_developers_spec.rb b/backend/spec/system/backoffice/project_developers_spec.rb index a3d18b088..b6449b5c0 100644 --- a/backend/spec/system/backoffice/project_developers_spec.rb +++ b/backend/spec/system/backoffice/project_developers_spec.rb @@ -243,7 +243,7 @@ fill_in "Instagram", with: "https://instagram.com/new-profile" fill_in "Facebook", with: "https://facebook.com/new-profile" fill_in "Twitter", with: "https://twitter.com/new-profile" - check t("enums.category.tourism-and-recreation.name") + check t("enums.category.sustainable-tourism.name") uncheck t("enums.category.forestry-and-agroforestry.name") check t("enums.impact.community.name") uncheck t("enums.impact.water.name") @@ -267,7 +267,7 @@ expect(approved_pd.account.instagram).to eq("https://instagram.com/new-profile") expect(approved_pd.account.facebook).to eq("https://facebook.com/new-profile") expect(approved_pd.account.twitter).to eq("https://twitter.com/new-profile") - expect(approved_pd.categories.sort).to eq(%w[non-timber-forest-production tourism-and-recreation]) + expect(approved_pd.categories.sort).to eq(%w[non-timber-forest-production sustainable-tourism]) expect(approved_pd.impacts).to eq(%w[community]) expect(approved_pd.priority_landscape_ids.sort).to eq([priority_landscape.id]) end diff --git a/backend/swagger/v1/swagger.yaml b/backend/swagger/v1/swagger.yaml index b55e92565..e200aebc8 100644 --- a/backend/swagger/v1/swagger.yaml +++ b/backend/swagger/v1/swagger.yaml @@ -40,7 +40,7 @@ paths: application/json: example: data: - id: d3a985b8-ea15-4732-a95d-1682283009c3 + id: 48b5fb96-27f5-4a30-b8e7-bedf942e6f4a type: investor attributes: name: Kutch-Spencer @@ -79,7 +79,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:58:50.272Z' + created_at: '2023-11-23T10:21:49.539Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -91,11 +91,11 @@ paths: relationships: owner: data: - id: a36d5d8d-b7c6-4841-bc35-d3d994b01417 + id: 845018ec-2db5-4fc6-bc4e-181f5d351260 type: user open_calls: data: - - id: ec3b453d-9dc2-4817-bcdc-15bef1c510f4 + - id: 014bd379-117f-4e45-8cd0-9492317365e0 type: open_call schema: type: object @@ -125,7 +125,7 @@ paths: application/json: example: data: - id: c6fbea4f-2de0-459e-a9e2-d4d6c51e7e9f + id: af15ace0-6bf6-44f5-8f3e-07e100abfc66 type: investor attributes: name: Name @@ -143,7 +143,7 @@ paths: investor_type: investor categories: - sustainable-agrosystems - - tourism-and-recreation + - sustainable-tourism ticket_sizes: - small-grants instrument_types: @@ -159,7 +159,7 @@ paths: language: es account_language: es review_status: unapproved - created_at: '2023-11-22T14:58:50.761Z' + created_at: '2023-11-23T10:21:49.966Z' contact_email: contact_phone: picture: @@ -171,7 +171,7 @@ paths: relationships: owner: data: - id: 0ea22bec-3a99-42db-b84f-6e01c721f1eb + id: 5329fbf4-2a1d-4c30-ba40-0c213e8636cf type: user open_calls: data: [] @@ -257,7 +257,7 @@ paths: type: string enum: - sustainable-agrosystems - - tourism-and-recreation + - sustainable-tourism - forestry-and-agroforestry - non-timber-forest-production - human-capital-and-inclusion @@ -343,7 +343,7 @@ paths: application/json: example: data: - id: 7d6dd33b-13f2-4df2-9e03-e9a50426d2ac + id: e0de2c4c-0c0f-4db5-8dd4-e049ec03e7ad type: investor attributes: name: Name @@ -361,7 +361,7 @@ paths: investor_type: investor categories: - sustainable-agrosystems - - tourism-and-recreation + - sustainable-tourism ticket_sizes: - small-grants instrument_types: @@ -377,7 +377,7 @@ paths: language: es account_language: es review_status: approved - created_at: '2023-11-22T14:58:51.080Z' + created_at: '2023-11-23T10:21:50.277Z' contact_email: contact@example.com contact_phone: '123456789' picture: @@ -389,7 +389,7 @@ paths: relationships: owner: data: - id: 783dfa13-eee6-4ce6-a151-e71b15c705cd + id: e824dcdc-a3d5-4490-ab55-ea8aebf65d32 type: user open_calls: data: [] @@ -457,7 +457,7 @@ paths: type: string enum: - sustainable-agrosystems - - tourism-and-recreation + - sustainable-tourism - forestry-and-agroforestry - non-timber-forest-production - human-capital-and-inclusion @@ -566,7 +566,7 @@ paths: application/json: example: data: - - id: f6a89bfb-71b7-48de-a727-ca8c38a7c0df + - id: 249d48af-1717-4ad0-b4ad-1cb8b9ad7070 type: investor attributes: name: Bartoletti and Sons @@ -605,7 +605,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:58:51.567Z' + created_at: '2023-11-23T10:21:50.719Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -617,7 +617,7 @@ paths: relationships: owner: data: - id: 4879f006-2e78-410e-9ecd-b4d7c4904514 + id: be4c6779-a1f5-46b2-aeb3-2a36b82c0b2a type: user open_calls: data: [] @@ -705,55 +705,55 @@ paths: application/json: example: data: - - id: 9e1ee716-dd17-4724-91f6-a9697d1511e8 + - id: d2f3d8c4-e072-4c1a-8d12-eda404424049 type: open_call_application attributes: message: Dolores fugiat nesciunt. Ut laborum dolores. Sit neque eos. Expedita molestiae quia. funded: false - created_at: '2023-11-22T14:59:02.677Z' - updated_at: '2023-11-22T14:59:02.677Z' + created_at: '2023-11-23T10:22:00.622Z' + updated_at: '2023-11-23T10:22:00.622Z' relationships: open_call: data: - id: 0d7687bd-4250-4e57-bd5f-108e9d06d583 + id: 31b13ad4-f6ac-450d-81a4-6b64d42dee69 type: open_call project: data: - id: 5af5f060-6c12-4beb-bad1-77c9302d1bf0 + id: 6f5b2cdb-5577-46c4-95a9-f4b2dc5cf81e type: project project_developer: data: - id: d3f5a333-7695-43fd-a43e-db5527e413c6 + id: e0b9406c-6c86-4c48-9e11-8ab0ff5ed097 type: project_developer investor: data: - id: dd37fbc6-2c16-499f-a500-fe6b67b0409f + id: b4078eaa-cf03-45b4-97a3-a4f8acef1df6 type: investor - - id: 3366b885-78fd-4757-b3cb-9945a5254694 + - id: 34415136-9424-4fda-a271-432cb655519b type: open_call_application attributes: message: Et quaerat omnis. Harum voluptas atque. Quo nesciunt voluptas. Suscipit ex cum. funded: false - created_at: '2023-11-22T14:59:02.590Z' - updated_at: '2023-11-22T14:59:02.590Z' + created_at: '2023-11-23T10:22:00.542Z' + updated_at: '2023-11-23T10:22:00.542Z' relationships: open_call: data: - id: 5b238129-00aa-47e5-a666-6fddd30d0d1a + id: b44d5fcb-b339-4d25-8dda-bc76793f3fdd type: open_call project: data: - id: 87cfba4f-1e7b-48e6-8e35-74ea2e44463b + id: 7e542cdf-67ae-4e72-8b42-d278fb286510 type: project project_developer: data: - id: d20e5d72-3ff6-4e69-9279-d0a66013f5fc + id: 79708912-921d-4211-8915-80d75e781541 type: project_developer investor: data: - id: dd37fbc6-2c16-499f-a500-fe6b67b0409f + id: b4078eaa-cf03-45b4-97a3-a4f8acef1df6 type: investor schema: type: object @@ -794,32 +794,32 @@ paths: application/json: example: data: - id: 21a0f0ff-e66c-4b5e-be0e-3eda6f6daa89 + id: 678b3d62-0afb-43cb-9a3d-690ba9cace69 type: open_call_application attributes: message: This is message funded: false - created_at: '2023-11-22T14:59:05.435Z' - updated_at: '2023-11-22T14:59:05.435Z' + created_at: '2023-11-23T10:22:03.192Z' + updated_at: '2023-11-23T10:22:03.192Z' relationships: open_call: data: - id: 1eec7ee4-8bd8-4f44-9adc-b88b5adad78b + id: dd43ac96-a773-4793-aaec-f801d1250869 type: open_call project: data: - id: 5431ba85-7342-4e60-92c3-a27253247451 + id: 204760a5-9af8-4af3-a7b0-89b774ff857a type: project project_developer: data: - id: 37859cda-38ad-48f1-bff5-52c7cf2481a5 + id: 2daaa69c-6b35-482a-804b-63bd26542786 type: project_developer investor: data: - id: 62d6b6b3-796c-47c3-a648-72b81272facc + id: ba0279c4-15f7-4010-a59c-b0b7ce6a9070 type: investor included: - - id: 5431ba85-7342-4e60-92c3-a27253247451 + - id: 204760a5-9af8-4af3-a7b0-89b774ff857a type: project attributes: name: Project 1 @@ -884,8 +884,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:59:05.366Z' - updated_at: '2023-11-22T14:59:05.366Z' + created_at: '2023-11-23T10:22:03.124Z' + updated_at: '2023-11-23T10:22:03.124Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -920,19 +920,19 @@ paths: relationships: project_developer: data: - id: 37859cda-38ad-48f1-bff5-52c7cf2481a5 + id: 2daaa69c-6b35-482a-804b-63bd26542786 type: project_developer country: data: - id: b9944732-71cb-42cd-8a07-6e0158c5d6ae + id: f3477d77-b6f3-4b28-af7b-d51980e5f2d5 type: location municipality: data: - id: f3a5dbf6-58f0-4619-aa85-9ed3447b0f2c + id: 9e1aa5cf-0647-425d-952f-6e3ea314cc6d type: location department: data: - id: 6817a98b-7262-4451-aec0-6730f4708985 + id: c05e3053-50bb-488c-84b2-681b02bac502 type: location priority_landscape: data: @@ -940,7 +940,7 @@ paths: data: [] project_images: data: [] - - id: 37859cda-38ad-48f1-bff5-52c7cf2481a5 + - id: 2daaa69c-6b35-482a-804b-63bd26542786 type: project_developer attributes: name: Kutch-Spencer @@ -965,7 +965,7 @@ paths: account_language: es entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:59:05.325Z' + created_at: '2023-11-23T10:22:03.082Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -977,19 +977,19 @@ paths: relationships: owner: data: - id: 7a4b21a9-a324-4192-832d-070a44faf98d + id: 1c889734-24bc-40bc-b6bd-f6cd59d9cd44 type: user projects: data: - - id: 5431ba85-7342-4e60-92c3-a27253247451 + - id: 204760a5-9af8-4af3-a7b0-89b774ff857a type: project involved_projects: data: [] priority_landscapes: data: - - id: f7d95458-4b84-4982-9224-95a8c1d32a0d + - id: 79576839-9313-4d9a-93ef-47d8396e469a type: location - - id: 66f3a2eb-8f97-4dc1-a694-4b94a058be93 + - id: 1bcb8c42-6941-47e7-b922-93181f73f53d type: location schema: type: object @@ -1077,30 +1077,30 @@ paths: application/json: example: data: - id: 8f8b8bcf-4441-4324-b422-1fe0611c9d30 + id: ecf7db0e-2d9e-4782-a859-fe17878bbdc3 type: open_call_application attributes: message: Enim repellat pariatur. Earum modi eos. Libero tempora exercitationem. Qui dolorem quo. funded: false - created_at: '2023-11-22T14:59:07.958Z' - updated_at: '2023-11-22T14:59:07.958Z' + created_at: '2023-11-23T10:22:05.567Z' + updated_at: '2023-11-23T10:22:05.567Z' relationships: open_call: data: - id: 1d85c06b-9e53-49c5-b2c8-acb79b942087 + id: 4f6fc926-ef4d-48d7-869f-d3560af4897a type: open_call project: data: - id: b0d5ccaf-8491-4b82-b49d-20c66260aa03 + id: 2c888863-654b-47ba-badc-689b790d5ece type: project project_developer: data: - id: 25732af7-f00f-453a-92df-9b90099c71d1 + id: 2354c6c5-4f95-40e3-91df-d66ac5293fb8 type: project_developer investor: data: - id: edc581ad-3169-4f0d-a3d1-bd179b511601 + id: b4b95d36-462b-48e1-87ce-d46d227ac96e type: investor schema: type: object @@ -1154,29 +1154,29 @@ paths: application/json: example: data: - id: 04271ed4-5b99-43c8-98ef-8adf0807c6f0 + id: a026c61a-d17a-465c-b378-ffc98dfe09d1 type: open_call_application attributes: message: This is updated text funded: false - created_at: '2023-11-22T14:59:09.014Z' - updated_at: '2023-11-22T14:59:09.032Z' + created_at: '2023-11-23T10:22:06.583Z' + updated_at: '2023-11-23T10:22:06.600Z' relationships: open_call: data: - id: 4014b037-4cc2-4069-9751-0b53e4ef3719 + id: 5cbfc9f5-02e6-41ec-ad8f-854a1d1203a5 type: open_call project: data: - id: 58295ec2-2799-4184-baca-ae8490eeb163 + id: b93f1ef7-dde8-4d4f-9b25-b8dc064b5ff9 type: project project_developer: data: - id: e24339e5-513f-4829-b37b-753d171f4a62 + id: cdbcc733-0296-406e-a21f-7788065fc313 type: project_developer investor: data: - id: 0b660a6e-9e80-42ee-92e3-6ec8745ec3d4 + id: 678b4f1a-f125-4b8c-a01b-05284b759d7d type: investor schema: type: object @@ -1387,7 +1387,7 @@ paths: application/json: example: data: - - id: 545779f3-53d1-4c0c-afd9-e2a7fe6a651b + - id: dfdf6696-1c2f-40e7-818e-61b495600477 type: open_call attributes: name: Open call 5 @@ -1407,13 +1407,13 @@ paths: impact_description: Porro soluta beatae. Quia ratione facilis. Eligendi sapiente voluptatem. Quas rerum officia. maximum_funding_per_project: 100000 - closing_at: '2024-09-22T14:59:14.331Z' + closing_at: '2024-09-23T10:22:11.310Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T14:59:14.334Z' - updated_at: '2023-11-22T14:59:14.340Z' + created_at: '2023-11-23T10:22:11.312Z' + updated_at: '2023-11-23T10:22:11.318Z' open_call_applications_count: 0 picture: analyzed: false @@ -1424,21 +1424,21 @@ paths: relationships: investor: data: - id: f70e7844-a098-47c2-a380-d2c9e155b6a5 + id: 02e2be3e-4699-4711-9eea-fff159da8475 type: investor country: data: - id: 3acc1376-5f34-4450-aa03-c44e40035356 + id: ca4d2799-f6bd-4e73-bba2-27aa49a0d8a4 type: location municipality: data: - id: ac72bfe7-04f0-415e-9615-8a352cb7369d + id: 60ed8c71-6936-4918-bcad-66ce2efdb8f1 type: location department: data: - id: 5ac4cb22-c206-4cdd-9993-7feb1834acd4 + id: 4ec1db10-0374-4fa7-96f3-5e75c3a5ca0a type: location - - id: 04f65587-7688-4fe9-a2a9-885d2a62a4a9 + - id: 5c78c029-177b-439f-bf9c-d7d1471ab024 type: open_call attributes: name: Open call 4 @@ -1458,13 +1458,13 @@ paths: impact_description: Autem et et. Voluptatem neque quibusdam. Repellat recusandae eum. Eius ex est. maximum_funding_per_project: 100000 - closing_at: '2024-09-22T14:59:14.308Z' + closing_at: '2024-09-23T10:22:11.290Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T14:59:14.310Z' - updated_at: '2023-11-22T14:59:14.318Z' + created_at: '2023-11-23T10:22:11.291Z' + updated_at: '2023-11-23T10:22:11.298Z' open_call_applications_count: 0 picture: analyzed: false @@ -1475,21 +1475,21 @@ paths: relationships: investor: data: - id: f70e7844-a098-47c2-a380-d2c9e155b6a5 + id: 02e2be3e-4699-4711-9eea-fff159da8475 type: investor country: data: - id: efcb408c-a37e-4f45-9b62-597f08d4e7e7 + id: 2d99cddc-7012-4a4a-8f15-3eaaa8a0268c type: location municipality: data: - id: 27f32a6d-6d88-44c8-99e8-4dc0f1f6f267 + id: c41bd3c6-ec7f-4b07-86c9-34de95033ecf type: location department: data: - id: 845820e5-579f-47e8-bc2d-28756cb7d6b4 + id: 492e1d2b-7bc6-4266-840b-0a9438049c78 type: location - - id: '0079b1ba-01d7-45a0-9cc5-ff2752689aa2' + - id: bb9a48c4-781d-4ad0-ac39-9a6084565249 type: open_call attributes: name: Open call 3 @@ -1509,13 +1509,13 @@ paths: impact_description: Dolores fugiat nesciunt. Ut laborum dolores. Sit neque eos. Expedita molestiae quia. maximum_funding_per_project: 100000 - closing_at: '2024-09-22T14:59:14.286Z' + closing_at: '2024-09-23T10:22:11.269Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T14:59:14.288Z' - updated_at: '2023-11-22T14:59:14.295Z' + created_at: '2023-11-23T10:22:11.271Z' + updated_at: '2023-11-23T10:22:11.277Z' open_call_applications_count: 0 picture: analyzed: false @@ -1526,21 +1526,21 @@ paths: relationships: investor: data: - id: f70e7844-a098-47c2-a380-d2c9e155b6a5 + id: 02e2be3e-4699-4711-9eea-fff159da8475 type: investor country: data: - id: c1753ced-98a3-40c3-b1eb-acfb1a967fb8 + id: dac41e3d-e6ac-45ef-b6cf-546b45913860 type: location municipality: data: - id: 2f5b5b3c-db15-40c1-ba45-54454bf0b9e4 + id: 6b089ee6-0fbb-497f-af22-19050b98e8d0 type: location department: data: - id: 9f37e8f2-ed55-4da0-bf05-9993ec644633 + id: '07138b18-d4e1-4d12-91c3-6606a72372a1' type: location - - id: 254e8ef0-8b0c-4138-9678-87b4748b7640 + - id: 26719c94-02e2-431a-a456-e3bfae97923a type: open_call attributes: name: Open call 2 @@ -1560,13 +1560,13 @@ paths: impact_description: Et quaerat omnis. Harum voluptas atque. Quo nesciunt voluptas. Suscipit ex cum. maximum_funding_per_project: 100000 - closing_at: '2024-09-22T14:59:14.264Z' + closing_at: '2024-09-23T10:22:11.248Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T14:59:14.266Z' - updated_at: '2023-11-22T14:59:14.273Z' + created_at: '2023-11-23T10:22:11.250Z' + updated_at: '2023-11-23T10:22:11.257Z' open_call_applications_count: 0 picture: analyzed: false @@ -1577,21 +1577,21 @@ paths: relationships: investor: data: - id: f70e7844-a098-47c2-a380-d2c9e155b6a5 + id: 02e2be3e-4699-4711-9eea-fff159da8475 type: investor country: data: - id: 6fa97b6a-bc4a-4a9e-9b89-9804aaaf8e4b + id: bf3c2b5b-bfe0-44a3-a965-da994d95fcea type: location municipality: data: - id: '02791e2e-900e-4a2c-9bf0-cbcd625414d0' + id: 95c48589-80ea-4166-8527-529f17b0c428 type: location department: data: - id: 54d904fd-af20-4fc8-bfd3-05cb40e31657 + id: 698379a1-0846-4c33-8115-4c3b92a43a8f type: location - - id: baaac652-35f8-4659-8e03-ad99a63c0b19 + - id: 3ceffab5-69da-4b3c-b22d-f2cdeb381fa9 type: open_call attributes: name: Yellow Banana @@ -1611,13 +1611,13 @@ paths: impact_description: Placeat commodi libero. Quo recusandae repellat. Sunt commodi tempore. Voluptatem et corrupti. maximum_funding_per_project: 100000 - closing_at: '2024-09-22T14:59:14.240Z' + closing_at: '2024-09-23T10:22:11.227Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T14:59:14.242Z' - updated_at: '2023-11-22T14:59:14.249Z' + created_at: '2023-11-23T10:22:11.229Z' + updated_at: '2023-11-23T10:22:11.235Z' open_call_applications_count: 0 picture: analyzed: false @@ -1628,21 +1628,21 @@ paths: relationships: investor: data: - id: f70e7844-a098-47c2-a380-d2c9e155b6a5 + id: 02e2be3e-4699-4711-9eea-fff159da8475 type: investor country: data: - id: 82f605ba-90a1-45da-8ed4-5a98de4a6a3c + id: 88af00af-fdcf-4b94-a1a0-b2bf5145356c type: location municipality: data: - id: 341405ce-92b5-4b04-9f1b-a7c9353dce88 + id: dd30145f-59d1-4fcc-a2a9-84e0d9f69d68 type: location department: data: - id: 0bce9e17-0cff-4d69-bf1e-43d661b1d261 + id: 2fc128bc-7409-43ef-8d31-ebc13fb4e99b type: location - - id: 28e66dbf-bebe-48f4-b2bb-b812be258c0a + - id: cee1bba2-e1cb-4b12-b3a4-cd4c78355142 type: open_call attributes: name: Open call 1 @@ -1662,13 +1662,13 @@ paths: impact_description: Enim repellat pariatur. Earum modi eos. Libero tempora exercitationem. Qui dolorem quo. maximum_funding_per_project: 100000 - closing_at: '2024-09-22T14:59:14.219Z' + closing_at: '2024-09-23T10:22:11.206Z' status: draft language: en account_language: es verified: false - created_at: '2023-11-22T14:59:14.221Z' - updated_at: '2023-11-22T14:59:14.228Z' + created_at: '2023-11-23T10:22:11.208Z' + updated_at: '2023-11-23T10:22:11.215Z' open_call_applications_count: 0 picture: analyzed: false @@ -1679,19 +1679,19 @@ paths: relationships: investor: data: - id: f70e7844-a098-47c2-a380-d2c9e155b6a5 + id: 02e2be3e-4699-4711-9eea-fff159da8475 type: investor country: data: - id: f47886f0-94f5-40c2-92cb-463cc39dc16b + id: 1f89194e-a34e-49dd-ae1a-64d80191e13d type: location municipality: data: - id: f5278e31-42cf-4c09-9743-b826919bb148 + id: 10a0525b-9b34-49f9-88b7-9ba26f71c264 type: location department: data: - id: 5ba92209-9347-4a18-9c49-c7dfa122a66a + id: 1404eeb7-3ce5-4b96-bd57-1a8f4256de0c type: location schema: type: object @@ -1732,7 +1732,7 @@ paths: application/json: example: data: - id: 9dc0387f-715d-48e5-82ba-5b4830dbc900 + id: 87c24acf-ec80-41bd-a080-47d1d79a4da4 type: open_call attributes: name: Open Call Name @@ -1748,13 +1748,13 @@ paths: funding_exclusions: Open Call Funding Exclusions impact_description: Open Call Impact Description maximum_funding_per_project: 100000 - closing_at: '2023-11-23T14:59:17.254Z' + closing_at: '2023-11-24T10:22:14.040Z' status: draft language: es account_language: es verified: false - created_at: '2023-11-22T14:59:17.268Z' - updated_at: '2023-11-22T14:59:17.274Z' + created_at: '2023-11-23T10:22:14.054Z' + updated_at: '2023-11-23T10:22:14.060Z' open_call_applications_count: 0 picture: analyzed: false @@ -1765,19 +1765,19 @@ paths: relationships: investor: data: - id: 5fbcad76-7965-4512-aa9a-529feac98a0f + id: a19aa9f2-9ea2-48d0-95d4-569db07f2d22 type: investor country: data: - id: 63c51047-0197-481f-a771-cc9c7d90b1a6 + id: 919a14e5-3e45-485e-af5b-734ab5622e67 type: location municipality: data: - id: 00c1e16f-b4fa-4e50-85d1-c0290ffaa535 + id: 1147e5e6-223c-4e1b-b7f0-c89e05504b72 type: location department: data: - id: 74e9c8fc-6c6a-4d48-aed2-de6d00a3da3b + id: 464b3c78-7afb-4ced-9152-9e55a52bbe31 type: location schema: type: object @@ -1918,7 +1918,7 @@ paths: application/json: example: data: - id: ce2e6b60-8fda-4f0b-aa9d-ebdd9ff8cfb7 + id: f32283ef-8acd-449f-add8-541c61843246 type: open_call attributes: name: Updated Open Call Name @@ -1933,13 +1933,13 @@ paths: funding_exclusions: Updated Open Call Funding Exclusions impact_description: Updated Open Call Impact Description maximum_funding_per_project: 100000 - closing_at: '2023-12-02T14:59:18.450Z' + closing_at: '2023-12-03T10:22:15.186Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T14:59:18.424Z' - updated_at: '2023-11-22T14:59:18.468Z' + created_at: '2023-11-23T10:22:15.161Z' + updated_at: '2023-11-23T10:22:15.204Z' open_call_applications_count: 0 picture: analyzed: false @@ -1950,19 +1950,19 @@ paths: relationships: investor: data: - id: 398b7fec-9c1e-4946-ab1e-fbbfa38b1ced + id: 3eac985c-cc4d-4c76-abc4-b6eb7db29108 type: investor country: data: - id: a483dc27-b386-4547-8ed0-9884ddc3e527 + id: d563cd49-45eb-4081-be83-9906833e2337 type: location municipality: data: - id: 21bf5d7e-c124-4ba3-96a9-9e02583d726e + id: a09c74b5-d211-4e85-8c32-923441e98165 type: location department: data: - id: af313905-9614-4ddf-b188-3be07b656fdb + id: e8fd79ea-4418-4620-a556-293cbf7ba3e2 type: location schema: type: object @@ -2147,7 +2147,7 @@ paths: application/json: example: data: - - id: 88becb76-7132-42de-9107-c43fdde58813 + - id: 7aa3f523-2a89-488a-bcf0-8bc6b6433bfb type: open_call attributes: name: Open call 1 @@ -2167,13 +2167,13 @@ paths: impact_description: Enim repellat pariatur. Earum modi eos. Libero tempora exercitationem. Qui dolorem quo. maximum_funding_per_project: 100000 - closing_at: '2024-09-22T14:59:20.893Z' + closing_at: '2024-09-23T10:22:17.424Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:59:20.896Z' - updated_at: '2023-11-22T14:59:20.902Z' + created_at: '2023-11-23T10:22:17.426Z' + updated_at: '2023-11-23T10:22:17.433Z' open_call_applications_count: 0 picture: analyzed: false @@ -2184,19 +2184,19 @@ paths: relationships: investor: data: - id: 8b5e3859-fc91-40b7-ae4e-e9e9935d72dc + id: a548cfa5-5344-4113-845c-929e9fe71b16 type: investor country: data: - id: 39deb2d8-14a7-4b4f-b38a-08becd4cc0c1 + id: f9a8d995-28a9-4e43-9870-ca4269fee814 type: location municipality: data: - id: e495ccaf-0f71-4c30-a727-315b913ba96b + id: 3fc317d0-f247-479e-8a7e-226c5019ccc2 type: location department: data: - id: 1f9caaff-4c31-4678-a627-449c343691d3 + id: 3a271662-8cc0-4906-acdd-771628cde2ce type: location meta: page: 1 @@ -2256,7 +2256,7 @@ paths: application/json: example: data: - id: c90a981b-290a-422c-9645-be4364ee7a5b + id: 8232a15a-4cf2-44b7-909e-b38005aaac65 type: project_developer attributes: name: Kutch-Spencer @@ -2281,7 +2281,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:59:22.667Z' + created_at: '2023-11-23T10:22:19.110Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -2293,23 +2293,23 @@ paths: relationships: owner: data: - id: 64ced4a2-e899-403b-bb47-9663eb16fed3 + id: bcff6269-4fb7-4d33-9439-0d736e61c09f type: user projects: data: - - id: 7cf7150b-64e2-4b92-93ab-6d6df5547d7a + - id: 3ddc9da4-16c6-4367-bc20-55b2b35def4e type: project involved_projects: data: - - id: ec07d7dd-296d-470d-9237-51b4884a6ef0 + - id: 7f69f878-bb0b-4697-b409-42170056f3e0 type: project - - id: ea8af7e6-60f4-4e8e-9d54-ab0c3a041ceb + - id: b489275b-e62a-4663-833a-35f2ece8da52 type: project priority_landscapes: data: - - id: 837ec7a7-5704-42bd-8bfb-62fdd03ab063 + - id: 6b22d84b-abc6-491d-aa13-fdd24b049490 type: location - - id: bd7aca04-c73a-4746-9b90-ffcaa846391e + - id: cfc735c9-1263-4efc-8b87-6625f0a690ba type: location schema: type: object @@ -2339,7 +2339,7 @@ paths: application/json: example: data: - id: 4d474698-c64c-4ccb-a492-7cd7d52aa472 + id: 495a8465-b509-4f6a-916c-02d01e83f67f type: project_developer attributes: name: Name @@ -2354,7 +2354,7 @@ paths: project_developer_type: ngo categories: - sustainable-agrosystems - - tourism-and-recreation + - sustainable-tourism impacts: - biodiversity - climate @@ -2362,7 +2362,7 @@ paths: account_language: es entity_legal_registration_number: '564823570' review_status: unapproved - created_at: '2023-11-22T14:59:23.241Z' + created_at: '2023-11-23T10:22:19.656Z' contact_email: contact_phone: picture: @@ -2374,7 +2374,7 @@ paths: relationships: owner: data: - id: 2a9dc71b-b322-4f6f-a4d2-87edb945dc13 + id: 353830a5-6346-4d74-a062-2f6ba7308e50 type: user projects: data: [] @@ -2382,7 +2382,7 @@ paths: data: [] priority_landscapes: data: - - id: d09508a0-ba44-4509-aabe-911d42e96d75 + - id: 71684176-a7bd-438d-973d-bb50b726a7c1 type: location schema: type: object @@ -2457,7 +2457,7 @@ paths: type: string enum: - sustainable-agrosystems - - tourism-and-recreation + - sustainable-tourism - forestry-and-agroforestry - non-timber-forest-production - human-capital-and-inclusion @@ -2508,7 +2508,7 @@ paths: application/json: example: data: - id: 7fc78d3a-2d23-44bd-bf7f-d0847bba8340 + id: c69f163b-374b-4d1a-82f6-34f5e154ca28 type: project_developer attributes: name: Name @@ -2523,7 +2523,7 @@ paths: project_developer_type: ngo categories: - sustainable-agrosystems - - tourism-and-recreation + - sustainable-tourism impacts: - biodiversity - climate @@ -2531,7 +2531,7 @@ paths: account_language: es entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:59:23.693Z' + created_at: '2023-11-23T10:22:20.028Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -2543,7 +2543,7 @@ paths: relationships: owner: data: - id: 5d4c6113-f8d8-436a-b471-888f54e864ab + id: fc8ea4e6-fea1-4bd0-9580-2600ae892c3e type: user projects: data: [] @@ -2551,7 +2551,7 @@ paths: data: [] priority_landscapes: data: - - id: 1501ed66-ef3a-437f-ba0e-5505d3905ddc + - id: 20d73582-56e6-431b-8c24-588f03f5deb9 type: location schema: type: object @@ -2608,7 +2608,7 @@ paths: type: string enum: - sustainable-agrosystems - - tourism-and-recreation + - sustainable-tourism - forestry-and-agroforestry - non-timber-forest-production - human-capital-and-inclusion @@ -2682,7 +2682,7 @@ paths: application/json: example: data: - - id: 15cf23d7-dcbb-488b-9117-6eceaf753ba2 + - id: 291fc0d3-bc04-4169-babf-1771363ba805 type: project_developer attributes: name: Bartoletti and Sons @@ -2707,7 +2707,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:59:24.313Z' + created_at: '2023-11-23T10:22:20.680Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -2719,7 +2719,7 @@ paths: relationships: owner: data: - id: 84d00c03-416d-4635-8bef-8655f12fd474 + id: 893a8c01-0a00-40b1-9e29-3e050820dcd6 type: user projects: data: [] @@ -2727,9 +2727,9 @@ paths: data: [] priority_landscapes: data: - - id: c36ccb74-1421-4b70-87ec-d3216de0cb05 + - id: 36940104-dea9-4d71-98d4-4f7be722bf7e type: location - - id: 0d825b65-2742-4021-946b-64d7b34c3afd + - id: 5dbf2113-6813-4ce3-b2ff-3c8264760f33 type: location meta: page: 1 @@ -2804,7 +2804,7 @@ paths: application/json: example: data: - - id: 4848ff7f-9205-4354-9a21-8e7b98bf6276 + - id: 1d3b9c53-b48f-4275-9ff9-8357cf006f79 type: project attributes: name: Draft project @@ -2869,8 +2869,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:59:25.267Z' - updated_at: '2023-11-22T14:59:25.267Z' + created_at: '2023-11-23T10:22:21.557Z' + updated_at: '2023-11-23T10:22:21.557Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -2905,19 +2905,19 @@ paths: relationships: project_developer: data: - id: 972d4668-3b07-4607-8297-5bff8d96f04a + id: f946f309-b04b-458d-815c-0ed0e6c99f69 type: project_developer country: data: - id: 4f908a8f-6235-4087-a139-5b3f556e6622 + id: fe6f486a-3160-4b84-ba7f-ba58f71e5eff type: location municipality: data: - id: 8535129d-60f3-4622-9cef-bd9541c0b297 + id: 06ff6060-242e-43ad-9aed-300af8bda19f type: location department: data: - id: dc4202d5-92ac-4a81-98a3-35c869ce9e9a + id: b6aa052f-7904-40af-96d5-f7a632347c2f type: location priority_landscape: data: @@ -2925,7 +2925,7 @@ paths: data: [] project_images: data: [] - - id: dbac198a-fd09-4653-8605-4c22f53389b5 + - id: 71f19cc5-dc59-4c59-b2b1-5b04e9a42f86 type: project attributes: name: This PDs Project Amazing @@ -2990,8 +2990,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:59:25.162Z' - updated_at: '2023-11-22T14:59:25.162Z' + created_at: '2023-11-23T10:22:21.470Z' + updated_at: '2023-11-23T10:22:21.470Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -3026,19 +3026,19 @@ paths: relationships: project_developer: data: - id: 972d4668-3b07-4607-8297-5bff8d96f04a + id: f946f309-b04b-458d-815c-0ed0e6c99f69 type: project_developer country: data: - id: 1a7932a9-18d0-4c7e-bcc9-1bbe919e5cc6 + id: 1d366d3a-9f89-4173-91ef-1e93d191db97 type: location municipality: data: - id: 9486c2fd-4dbe-4538-8088-92032c1b497b + id: 49976d55-1376-4a2a-a0ea-3dee6a172b1a type: location department: data: - id: cac6b179-aea6-4af8-8204-046ac959bb45 + id: 357f6616-251d-40b6-9209-a16f297ac93a type: location priority_landscape: data: @@ -3046,7 +3046,7 @@ paths: data: [] project_images: data: [] - - id: 3dc9e44e-7fa6-4b8b-b06d-70c20b2f52ab + - id: 53369bf8-4544-447e-b3b0-073a05ac6a3a type: project attributes: name: This PDs Project Awesome @@ -3111,8 +3111,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:59:25.130Z' - updated_at: '2023-11-22T14:59:25.130Z' + created_at: '2023-11-23T10:22:21.435Z' + updated_at: '2023-11-23T10:22:21.435Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -3147,19 +3147,19 @@ paths: relationships: project_developer: data: - id: 972d4668-3b07-4607-8297-5bff8d96f04a + id: f946f309-b04b-458d-815c-0ed0e6c99f69 type: project_developer country: data: - id: bd731cc2-43f3-4a0a-bd49-cff9bcde8829 + id: 73c035af-1081-4328-ab8e-fe9ae25e7e02 type: location municipality: data: - id: c4146a3c-13a5-4504-8fee-4137e45758be + id: 6cfa7605-296c-4e9f-bc90-76e102eafb8c type: location department: data: - id: 44f3a430-3849-4d6f-8533-47a475f3d702 + id: 44b757a2-0bcd-4a31-9e19-14a4134f86af type: location priority_landscape: data: @@ -3206,7 +3206,7 @@ paths: application/json: example: data: - id: 9b1d64f8-2778-4f54-bcd7-0b5764b1d4b1 + id: d4821167-3dca-4157-a13d-08981e977907 type: project attributes: name: Project Name @@ -3263,8 +3263,8 @@ paths: - 1.5274297752414188 properties: {} verified: false - created_at: '2023-11-22T14:59:27.080Z' - updated_at: '2023-11-22T14:59:27.080Z' + created_at: '2023-11-23T10:22:23.217Z' + updated_at: '2023-11-23T10:22:23.217Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -3297,50 +3297,50 @@ paths: relationships: project_developer: data: - id: 0b969752-edc6-4a12-a670-c2144e8d45a2 + id: f29b18de-d0fd-42e3-81ae-edc0264f082c type: project_developer country: data: - id: 95fb16f0-96a7-469b-a264-f8dcba926207 + id: 584aceb8-0965-414b-94b2-fcf99367cad2 type: location municipality: data: - id: 45d6bda3-4e7d-4009-9544-1459d740afad + id: 306da7ad-4634-4c15-88a6-92bec91f12e2 type: location department: data: - id: 3efb6b10-0888-4e88-9ee8-ded50703b45b + id: 652d236b-dc31-4c36-8209-9beb29aa7f98 type: location priority_landscape: data: involved_project_developers: data: - - id: e30eef19-357a-4416-a8df-dd819cf97f50 + - id: 77422adc-80cc-4866-b5c5-a1f77d39f0c5 type: project_developer - - id: 499fc2fa-2fd9-435d-9b31-3a57dda80064 + - id: 338b2588-6003-4d02-af9f-fc46f7dd196a type: project_developer project_images: data: - - id: 84b68da3-425d-4bf2-8bd4-44b2fd2695f6 + - id: 9f8a5eee-ac4b-49ce-b900-41715ad65f6e type: project_image - - id: 425ddb2e-f2a7-4e10-b880-1fd96ffffa62 + - id: a28ed230-7d34-45ad-9555-c23b8c953b7b type: project_image included: - - id: 84b68da3-425d-4bf2-8bd4-44b2fd2695f6 + - id: 9f8a5eee-ac4b-49ce-b900-41715ad65f6e type: project_image attributes: cover: true - created_at: '2023-11-22T14:59:27.090Z' + created_at: '2023-11-23T10:22:23.221Z' file: analyzed: false small: medium: original: - - id: 425ddb2e-f2a7-4e10-b880-1fd96ffffa62 + - id: a28ed230-7d34-45ad-9555-c23b8c953b7b type: project_image attributes: cover: false - created_at: '2023-11-22T14:59:27.095Z' + created_at: '2023-11-23T10:22:23.225Z' file: analyzed: false small: @@ -3444,7 +3444,7 @@ paths: type: string enum: - sustainable-agrosystems - - tourism-and-recreation + - sustainable-tourism - forestry-and-agroforestry - non-timber-forest-production - human-capital-and-inclusion @@ -3595,7 +3595,7 @@ paths: application/json: example: data: - id: 6184a98f-532f-4810-b3ad-14be80c395fc + id: 68e9cd18-e012-4b55-9db3-355fff438602 type: project attributes: name: Updated Project Name @@ -3639,8 +3639,8 @@ paths: - 1.0 - 2.0 verified: false - created_at: '2023-11-22T14:59:30.549Z' - updated_at: '2023-11-22T14:59:30.724Z' + created_at: '2023-11-23T10:22:26.401Z' + updated_at: '2023-11-23T10:22:26.560Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -3673,31 +3673,31 @@ paths: relationships: project_developer: data: - id: 8c2d6004-eb0e-491d-bbd7-b3a9b0e5afe7 + id: a2a960ae-7f45-433a-951d-dcea189b40b7 type: project_developer country: data: - id: 940c84f8-6c18-468a-9c7c-c8c8aeb6ae1f + id: a85a2a20-7113-456c-af3a-fdea5e9174da type: location municipality: data: - id: 34333d31-a3d8-4d81-8a3d-fecf3b9c4411 + id: f4df6cbf-a911-40d4-97ba-cd00c61e36ce type: location department: data: - id: ab076b6e-4e57-42bb-bf1f-d2aa518a6f3d + id: 47ad1b49-f164-4b48-9126-49e0065548dc type: location priority_landscape: data: involved_project_developers: data: - - id: d1846793-f3ef-48cc-9bb2-0650c91b9f3b + - id: 0c77b127-f029-4dab-b92e-cd7ed29f009f type: project_developer - - id: 07e5ff13-e4b1-47f9-95c1-260c232f2308 + - id: 5fa546dd-54d8-4ad2-9ab9-082bee71819d type: project_developer project_images: data: - - id: 192d8a63-ef75-4f6f-8844-90a1684fe42c + - id: 46930646-b397-4441-bb95-809372532e5c type: project_image schema: type: object @@ -3794,7 +3794,7 @@ paths: type: string enum: - sustainable-agrosystems - - tourism-and-recreation + - sustainable-tourism - forestry-and-agroforestry - non-timber-forest-production - human-capital-and-inclusion @@ -4002,7 +4002,7 @@ paths: application/json: example: data: - - id: 14863da0-d1fd-4f02-964d-e11ca3e45dcd + - id: 789ce27f-0a7d-407e-8497-bd13e9fcb364 type: project attributes: name: Project 1 @@ -4067,8 +4067,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:59:37.784Z' - updated_at: '2023-11-22T14:59:37.784Z' + created_at: '2023-11-23T10:22:33.430Z' + updated_at: '2023-11-23T10:22:33.430Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -4103,19 +4103,19 @@ paths: relationships: project_developer: data: - id: 9e90413e-dcca-42d7-b6ce-a935c51b09a0 + id: 72427445-c3d8-40b0-ab4f-72d8ce255dd5 type: project_developer country: data: - id: d10cf6c8-d5d8-4405-b981-8b228b42b606 + id: 6296ca4a-9840-4772-9956-75d2ec1c911b type: location municipality: data: - id: 7ed48e5c-31cf-47c6-9ab3-3e9bdb717bcb + id: 1e5f284e-24b0-4019-93ae-5736822eec02 type: location department: data: - id: 1150d3cb-20f1-4da1-802f-c0d17ac0483e + id: 8386842f-342a-4cc7-981a-25a033652fdf type: location priority_landscape: data: @@ -4273,14 +4273,14 @@ paths: application/json: example: data: - - id: c83dd367-04b9-4f5a-9f63-47b0b05aebc9 + - id: 5e88c8e1-7d7b-4b55-ab59-b7b3080f5d0c type: user attributes: first_name: Dawna last_name: Block email: dawna.block@example.org role: light - created_at: '2023-11-22T14:59:40.258Z' + created_at: '2023-11-23T10:22:36.072Z' ui_language: en account_language: en otp_required_for_login: false @@ -4293,14 +4293,14 @@ paths: small: medium: original: - - id: 0514de69-e95f-46b8-a2fc-1c88b5c889a7 + - id: b496e42f-d129-41f1-9c72-8b4830b8abd7 type: user attributes: first_name: Desmond last_name: Herzog email: desmond_herzog@example.org role: light - created_at: '2023-11-22T14:59:40.278Z' + created_at: '2023-11-23T10:22:36.095Z' ui_language: en account_language: en otp_required_for_login: false @@ -4313,14 +4313,14 @@ paths: small: medium: original: - - id: 026d99f3-389e-42e2-96e2-28f8b3a90eda + - id: 4a29da61-f355-423c-b7b4-ea0c1c0b9cea type: user attributes: first_name: Raymon last_name: Runte email: runte_raymon@example.org role: light - created_at: '2023-11-22T14:59:40.283Z' + created_at: '2023-11-23T10:22:36.100Z' ui_language: en account_language: otp_required_for_login: false @@ -4415,14 +4415,14 @@ paths: application/json: example: data: - id: 4a57222c-8499-4c11-9ac5-47c3e87f8e32 + id: 1cf93669-e0ca-4740-888b-506890bda7e4 type: user attributes: first_name: Desmond last_name: Herzog email: desmond_herzog@example.org role: light - created_at: '2023-11-22T14:59:41.521Z' + created_at: '2023-11-23T10:22:37.128Z' ui_language: en account_language: en otp_required_for_login: false @@ -4446,7 +4446,7 @@ paths: application/json: example: errors: - - title: Couldn't find User with 'id'=1464067a-7107-4f5d-b2dd-8a9de1f45f98 + - title: Couldn't find User with 'id'=c267a6bc-11dc-47a4-807d-1f971abc1499 [WHERE "users"."account_id" = $1] schema: "$ref": "#/components/schemas/errors" @@ -4572,7 +4572,7 @@ paths: application/json: example: data: - - id: 4b407a3c-47cf-409a-bfdd-abd25f0e929c + - id: 0dc3a05a-b247-4c5d-a995-21d222fc183a type: background_job_event attributes: status: enqueued @@ -4582,9 +4582,9 @@ paths: priority: executions: 1 message: - created_at: '2023-11-12T14:59:43.525Z' - updated_at: '2023-11-22T14:59:43.525Z' - - id: 594c94c3-025f-4a30-a9a1-c1b36e1388eb + created_at: '2023-11-13T10:22:39.188Z' + updated_at: '2023-11-23T10:22:39.188Z' + - id: 62a0f0ba-913c-405e-a901-1b5541e7d489 type: background_job_event attributes: status: crashed @@ -4594,8 +4594,8 @@ paths: priority: executions: 1 message: - created_at: '2023-11-22T14:59:43.524Z' - updated_at: '2023-11-22T14:59:43.524Z' + created_at: '2023-11-23T10:22:39.186Z' + updated_at: '2023-11-23T10:22:39.186Z' meta: page: 1 per_page: 10 @@ -4656,14 +4656,14 @@ paths: application/json: example: data: - id: 74559c82-33e9-4849-8c3a-5d0138e3491f + id: a4ea1984-f3d5-498f-a873-e1fb41352014 type: user attributes: first_name: Dawna last_name: Block email: user@example.com role: light - created_at: '2023-11-22T14:59:43.707Z' + created_at: '2023-11-23T10:22:39.341Z' ui_language: en account_language: otp_required_for_login: false @@ -4707,10 +4707,10 @@ paths: color: "#E7C343" description: Sustainable and regenerative agriculture, fishing, and aquaculture as well as manufacturing of derived subproducts. - - id: tourism-and-recreation + - id: sustainable-tourism type: category attributes: - name: Tourism and Recreation + name: Sustainable Tourism color: "#4492E5" description: Accommodation, travel, transportation, hospitality, visitor experiences and eco-tourism projects. @@ -5598,7 +5598,7 @@ paths: application/json: example: data: - - id: ad3c2c03-1d68-4737-ab47-d07415f14f86 + - id: 485f625e-b736-4f7f-a113-14283a256c9d type: investor attributes: name: Bartoletti and Sons @@ -5636,7 +5636,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:59:47.530Z' + created_at: '2023-11-23T10:22:42.793Z' contact_email: contact_phone: picture: @@ -5648,11 +5648,11 @@ paths: relationships: owner: data: - id: 5e423dc3-5983-47dc-93c0-fbc1d28e2dcc + id: 1ea7aad4-36b3-47f5-bf74-80a33aea2064 type: user open_calls: data: [] - - id: b1ee4e56-d78a-48ea-8e46-d298c77609e7 + - id: 075554a9-34f2-44db-86cf-24406a14f3ad type: investor attributes: name: Becker LLC @@ -5690,7 +5690,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:59:47.643Z' + created_at: '2023-11-23T10:22:42.898Z' contact_email: contact_phone: picture: @@ -5702,11 +5702,11 @@ paths: relationships: owner: data: - id: 6d4f8443-26ed-4bd6-b60e-37ded10eb20a + id: 7fcb2ad3-66c7-42cb-9fb1-4c1057648253 type: user open_calls: data: [] - - id: 04b65dc1-0e81-46d4-9604-19a34ef45b5b + - id: 20fc0bb3-4436-40c2-8159-310ef2fe0625 type: investor attributes: name: Gleichner-Bartoletti @@ -5743,7 +5743,7 @@ paths: language: pt account_language: pt review_status: approved - created_at: '2023-11-22T14:59:47.719Z' + created_at: '2023-11-23T10:22:42.967Z' contact_email: contact_phone: picture: @@ -5755,11 +5755,11 @@ paths: relationships: owner: data: - id: 32ebf6f5-5e73-4d45-8c04-61d050b03718 + id: 265b562a-7cae-41c4-9e83-432925045742 type: user open_calls: data: [] - - id: e5bc978a-27ce-4f9b-b278-3e0b64cc8be5 + - id: f8c147b0-1828-4059-8e6c-39498fbf9897 type: investor attributes: name: Hane, Lehner and Goyette @@ -5797,7 +5797,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:59:47.551Z' + created_at: '2023-11-23T10:22:42.814Z' contact_email: contact_phone: picture: @@ -5809,11 +5809,11 @@ paths: relationships: owner: data: - id: d38d368d-0912-460f-8fdf-71ef4059533c + id: 473f2289-c59e-434e-9052-adbf881efe3f type: user open_calls: data: [] - - id: 23b090c8-2732-4e88-bbcf-2b9b77373a1f + - id: c0a1d647-81a1-4508-ac22-a1a07435a399 type: investor attributes: name: Hilpert, Waters and Johnston @@ -5851,7 +5851,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:59:47.574Z' + created_at: '2023-11-23T10:22:42.834Z' contact_email: contact_phone: picture: @@ -5863,11 +5863,11 @@ paths: relationships: owner: data: - id: b52450ed-bf4a-4634-ab4b-64e9fa66ecf2 + id: '084b5b49-a618-4d70-b6c6-09ce964c8f5f' type: user open_calls: data: [] - - id: 392f4bb1-5512-4c0b-9419-cd2b0343a2bd + - id: afb3bb87-235f-4918-b490-afece942a023 type: investor attributes: name: Jacobson, Fritsch and Stanton @@ -5905,7 +5905,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:59:47.597Z' + created_at: '2023-11-23T10:22:42.855Z' contact_email: contact_phone: picture: @@ -5917,11 +5917,11 @@ paths: relationships: owner: data: - id: 9e26a927-f0ff-4e91-8d3b-c32c35d0cb40 + id: 7081d26b-fa31-40ff-aa9a-3d11b75de7d5 type: user open_calls: data: [] - - id: f8202b2b-9498-4a75-ad4e-be281f2b6c70 + - id: 8375743e-d2cf-4c7c-9517-08ab3a064d84 type: investor attributes: name: Keebler, Kub and Zemlak @@ -5959,7 +5959,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:59:47.620Z' + created_at: '2023-11-23T10:22:42.876Z' contact_email: contact_phone: picture: @@ -5971,11 +5971,11 @@ paths: relationships: owner: data: - id: 42f11d19-d762-4c88-9ed9-8eba180b2774 + id: 9dd5e384-e923-428a-8af6-487aaaa1193e type: user open_calls: data: [] - - id: 12e216b0-9412-4c9f-9307-0e4f0d245a79 + - id: 2e088230-5568-4032-9d74-1b5ec1b2319b type: investor attributes: name: Kutch-Spencer @@ -6012,7 +6012,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:59:47.486Z' + created_at: '2023-11-23T10:22:42.751Z' contact_email: contact_phone: picture: @@ -6024,7 +6024,7 @@ paths: relationships: owner: data: - id: d7cee6c2-759d-4210-97ab-c5512898cc5f + id: f0965313-843d-4a3d-9cc5-65f344a89425 type: user open_calls: data: [] @@ -6090,7 +6090,7 @@ paths: application/json: example: data: - id: 12e216b0-9412-4c9f-9307-0e4f0d245a79 + id: 2e088230-5568-4032-9d74-1b5ec1b2319b type: investor attributes: name: Kutch-Spencer @@ -6127,7 +6127,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:59:47.486Z' + created_at: '2023-11-23T10:22:42.751Z' contact_email: contact_phone: picture: @@ -6139,7 +6139,7 @@ paths: relationships: owner: data: - id: d7cee6c2-759d-4210-97ab-c5512898cc5f + id: f0965313-843d-4a3d-9cc5-65f344a89425 type: user open_calls: data: [] @@ -6273,14 +6273,14 @@ paths: application/json: example: data: - id: 1854fab5-ce26-4ccd-abe1-37dd609fbe8d + id: e10de511-4252-44ef-b8c1-2705a697012c type: user attributes: first_name: Dawna last_name: Block email: dawna.block@example.org role: light - created_at: '2023-11-22T14:59:48.744Z' + created_at: '2023-11-23T10:22:44.226Z' ui_language: es account_language: pt otp_required_for_login: false @@ -6366,63 +6366,63 @@ paths: application/json: example: data: - - id: bac22521-1cc2-4217-b038-f0ae6633dd5d + - id: ac063058-a469-472c-8958-b640216f3b4a type: location attributes: name: Canada location_type: country code: - created_at: '2023-11-22T14:59:48.967Z' + created_at: '2023-11-23T10:22:44.470Z' relationships: parent: data: - - id: a4950ce7-5543-4a51-87d4-fa031be1dbce + - id: 2e80a3b6-7306-480f-a652-b37936752b1a type: location attributes: name: Papua New Guinea location_type: department code: - created_at: '2023-11-22T14:59:48.969Z' + created_at: '2023-11-23T10:22:44.473Z' relationships: parent: data: - id: bac22521-1cc2-4217-b038-f0ae6633dd5d + id: ac063058-a469-472c-8958-b640216f3b4a type: location - - id: 5594f5c9-1b78-435d-af81-e4cac35e494a + - id: 6991b53c-7070-44a0-a52e-c8eb9cb87bd6 type: location attributes: name: Jamaica location_type: municipality code: - created_at: '2023-11-22T14:59:48.972Z' + created_at: '2023-11-23T10:22:44.475Z' relationships: parent: data: - id: a4950ce7-5543-4a51-87d4-fa031be1dbce + id: 2e80a3b6-7306-480f-a652-b37936752b1a type: location - - id: ecd9d5c2-3693-444f-83cf-f99cb2b49fff + - id: b67593c0-d90a-414c-b993-8035e252407c type: location attributes: name: Libyan Arab Jamahiriya location_type: municipality code: - created_at: '2023-11-22T14:59:48.974Z' + created_at: '2023-11-23T10:22:44.478Z' relationships: parent: data: - id: a4950ce7-5543-4a51-87d4-fa031be1dbce + id: 2e80a3b6-7306-480f-a652-b37936752b1a type: location - - id: a07a358e-4947-4a03-8517-167bd5cda864 + - id: 1e04b71e-6d6e-42e8-bd72-f6ec7245c577 type: location attributes: name: India location_type: municipality code: - created_at: '2023-11-22T14:59:48.976Z' + created_at: '2023-11-23T10:22:44.480Z' relationships: parent: data: - id: a4950ce7-5543-4a51-87d4-fa031be1dbce + id: 2e80a3b6-7306-480f-a652-b37936752b1a type: location schema: type: object @@ -6471,17 +6471,17 @@ paths: application/json: example: data: - id: 5594f5c9-1b78-435d-af81-e4cac35e494a + id: 6991b53c-7070-44a0-a52e-c8eb9cb87bd6 type: location attributes: name: Jamaica location_type: municipality code: - created_at: '2023-11-22T14:59:48.972Z' + created_at: '2023-11-23T10:22:44.475Z' relationships: parent: data: - id: a4950ce7-5543-4a51-87d4-fa031be1dbce + id: 2e80a3b6-7306-480f-a652-b37936752b1a type: location schema: type: object @@ -6566,7 +6566,7 @@ paths: application/json: example: data: - - id: 85214504-46f8-4242-964f-e2e56dce4274 + - id: df3ad9c7-83c2-4c16-9839-383c70d46b8e type: open_call attributes: name: Open call 1 @@ -6586,13 +6586,13 @@ paths: impact_description: Placeat commodi libero. Quo recusandae repellat. Sunt commodi tempore. Voluptatem et corrupti. maximum_funding_per_project: 100000 - closing_at: '2024-09-22T14:59:49.184Z' + closing_at: '2024-09-23T10:22:44.684Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:59:49.187Z' - updated_at: '2023-11-22T14:59:49.194Z' + created_at: '2023-11-23T10:22:44.687Z' + updated_at: '2023-11-23T10:22:44.694Z' open_call_applications_count: 0 picture: analyzed: false @@ -6603,21 +6603,21 @@ paths: relationships: investor: data: - id: 0e4b5e4a-4356-438e-bc32-bc8dca641785 + id: 6050c96a-c604-4543-ad64-53acf3ed04fa type: investor country: data: - id: c59533c3-f023-4dbf-ae0a-42704f5d3efa + id: e51c310f-398f-4058-a589-e95bbc9f0267 type: location municipality: data: - id: 9a83e750-87f2-425d-b6f0-ee8d828cec71 + id: 9e7bcf3c-717a-4173-8cce-a6e1c092f940 type: location department: data: - id: 81220499-5d2b-4222-a310-98624a928245 + id: 578b34ea-2017-4ebf-b41b-ceae4fe00c2d type: location - - id: 027e5f30-a014-416b-9e56-5c1eb039b02f + - id: 75213e61-d2c6-4983-ae84-14ed8de7557a type: open_call attributes: name: Open call 2 @@ -6637,13 +6637,13 @@ paths: impact_description: Et quaerat omnis. Harum voluptas atque. Quo nesciunt voluptas. Suscipit ex cum. maximum_funding_per_project: 100000 - closing_at: '2024-09-22T14:59:49.237Z' + closing_at: '2024-09-23T10:22:44.730Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:59:49.239Z' - updated_at: '2023-11-22T14:59:49.246Z' + created_at: '2023-11-23T10:22:44.733Z' + updated_at: '2023-11-23T10:22:44.748Z' open_call_applications_count: 0 picture: analyzed: false @@ -6654,21 +6654,21 @@ paths: relationships: investor: data: - id: 80b36223-e8b2-46f3-90a9-10924978b2b4 + id: e794892c-74e1-4c16-8742-3d2730ff8225 type: investor country: data: - id: 8826b490-0756-47a3-b4b5-d5a43feefb79 + id: c86bf07d-6583-43ed-8cef-943b4f357b67 type: location municipality: data: - id: aa5bfd36-9320-45e0-8f00-955c5610d9c5 + id: 910b5c9e-b2fe-4df4-bb3e-de72f486b298 type: location department: data: - id: 65c24094-e089-4137-8ace-96245104fac3 + id: 91943f7f-6a7f-4be0-9814-f7d4cd4a5c77 type: location - - id: abeee9d5-891d-4f09-9ff7-aaff06b072e3 + - id: d79eba3f-d1e0-4454-a7ec-eb8675eb5d2d type: open_call attributes: name: Open call 3 @@ -6688,13 +6688,13 @@ paths: impact_description: Dolores fugiat nesciunt. Ut laborum dolores. Sit neque eos. Expedita molestiae quia. maximum_funding_per_project: 100000 - closing_at: '2024-09-22T14:59:49.280Z' + closing_at: '2024-09-23T10:22:44.791Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:59:49.282Z' - updated_at: '2023-11-22T14:59:49.289Z' + created_at: '2023-11-23T10:22:44.794Z' + updated_at: '2023-11-23T10:22:44.801Z' open_call_applications_count: 0 picture: analyzed: false @@ -6705,21 +6705,21 @@ paths: relationships: investor: data: - id: 1e506e70-4ac1-4b5f-8eae-c1065be58285 + id: 1a817709-0e7c-4f66-9c48-1f79db43ce51 type: investor country: data: - id: fc8b7285-bebe-4a84-b49c-e0a4f312971e + id: 070e131d-0cf9-4af0-bc59-744632ba6a8c type: location municipality: data: - id: 1edc54ac-5b79-40f9-b1c7-c554819adcaf + id: f85777a3-d661-4ce0-bed4-75383c6965cd type: location department: data: - id: 7da3f6cb-e203-41dd-9e7d-6e8519d5dff2 + id: 48b8f871-35ea-4b51-ace7-156faa369468 type: location - - id: 7763ad13-be3e-4f82-995d-a14fcaab688e + - id: 57c39aeb-72b8-45aa-8c71-65e944074c01 type: open_call attributes: name: Open call 4 @@ -6739,13 +6739,13 @@ paths: impact_description: Autem et et. Voluptatem neque quibusdam. Repellat recusandae eum. Eius ex est. maximum_funding_per_project: 100000 - closing_at: '2024-09-22T14:59:49.324Z' + closing_at: '2024-09-23T10:22:44.837Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:59:49.326Z' - updated_at: '2023-11-22T14:59:49.333Z' + created_at: '2023-11-23T10:22:44.840Z' + updated_at: '2023-11-23T10:22:44.847Z' open_call_applications_count: 0 picture: analyzed: false @@ -6756,21 +6756,21 @@ paths: relationships: investor: data: - id: 438e38e9-836c-41c7-ab8c-9dca85a89cd0 + id: 5543816b-cbb8-48d3-bed6-e17fa4ab2167 type: investor country: data: - id: 27abf8fb-8351-49ae-a5b4-b79d216c1e2b + id: f46d8066-74c8-4215-8f32-a2a80b00e4fd type: location municipality: data: - id: 8945fd24-5a67-46ae-b02d-b3186c70aab2 + id: a6e7eb00-8b15-40cd-bef0-dc5efc4d31a7 type: location department: data: - id: 208fb42e-4896-4d81-a8b3-7ef60e949e29 + id: ade0c826-2ac6-451d-abf2-84845f9a2d95 type: location - - id: d6618ee8-46da-4f2e-a143-0a2b7489778e + - id: 1b97c836-ca54-4df7-a282-ebf993ba468a type: open_call attributes: name: Open call 5 @@ -6790,13 +6790,13 @@ paths: impact_description: Porro soluta beatae. Quia ratione facilis. Eligendi sapiente voluptatem. Quas rerum officia. maximum_funding_per_project: 100000 - closing_at: '2024-09-22T14:59:49.367Z' + closing_at: '2024-09-23T10:22:44.884Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:59:49.370Z' - updated_at: '2023-11-22T14:59:49.376Z' + created_at: '2023-11-23T10:22:44.886Z' + updated_at: '2023-11-23T10:22:44.893Z' open_call_applications_count: 0 picture: analyzed: false @@ -6807,21 +6807,21 @@ paths: relationships: investor: data: - id: 85423b04-2962-4432-b2f2-af2dea13a42c + id: e301a421-43c7-40b2-b69c-d79e742704b4 type: investor country: data: - id: 40869b4a-48d1-40f3-8f01-33e5dcdbe7cb + id: 40b0aa8a-d892-40d3-95c1-7f4729ef910a type: location municipality: data: - id: 55d0b1ea-1da5-4eb4-a407-7a14f2e81ad6 + id: ba7e9808-85c6-4cf5-854d-fe3ee38ba731 type: location department: data: - id: d0f0f769-db39-4b59-9a3b-169cf9344b73 + id: '08b00ed3-f0d2-40ae-bcc6-fc86882ffa16' type: location - - id: f568c98c-a84b-477b-9cfd-2fd8dc4f4e61 + - id: dbe2347f-1bbd-4f8b-836e-e5b195ad9a38 type: open_call attributes: name: Open call 6 @@ -6841,13 +6841,13 @@ paths: impact_description: Mollitia aut vel. Qui illum accusantium. Et laudantium et. Sed recusandae aut. maximum_funding_per_project: 100000 - closing_at: '2024-09-22T14:59:49.412Z' + closing_at: '2024-09-23T10:22:44.930Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:59:49.414Z' - updated_at: '2023-11-22T14:59:49.421Z' + created_at: '2023-11-23T10:22:44.932Z' + updated_at: '2023-11-23T10:22:44.940Z' open_call_applications_count: 0 picture: analyzed: false @@ -6858,21 +6858,21 @@ paths: relationships: investor: data: - id: ee2a72b4-fb84-4e6a-aa8a-c1da45d5ba76 + id: f0df66ac-27b8-499d-a654-ee77504cdc24 type: investor country: data: - id: 133d36c4-688a-4fa1-9e6e-cfb8390bbeab + id: a2637f83-cb74-476f-bd2b-53bebf701a5b type: location municipality: data: - id: e60ebefa-c81d-4bde-8d97-3cc8586927fa + id: f25a9cf6-61d6-4814-97ea-10bcd1969d31 type: location department: data: - id: 50e100eb-fd00-4294-94c6-3da48f370a40 + id: 3161561c-81ff-47cf-87f0-47fb3e9c5cce type: location - - id: 8926946e-ea82-4a9d-83dd-0a522d085536 + - id: a441ef9d-fb02-4ae0-81e6-1df4810c84c9 type: open_call attributes: name: Open call 8 @@ -6891,13 +6891,13 @@ paths: impact_description: Impedit animi eveniet. Quia illum aut. Dolore quia officiis. Non aut sit. maximum_funding_per_project: 100000 - closing_at: '2024-09-22T14:59:49.521Z' + closing_at: '2024-09-23T10:22:45.052Z' status: launched language: en account_language: pt verified: false - created_at: '2023-11-22T14:59:49.523Z' - updated_at: '2023-11-22T14:59:49.529Z' + created_at: '2023-11-23T10:22:45.055Z' + updated_at: '2023-11-23T10:22:45.062Z' open_call_applications_count: 0 picture: analyzed: false @@ -6908,21 +6908,21 @@ paths: relationships: investor: data: - id: 6328db76-4ac1-4ffb-ab17-801c6f80ad59 + id: 1218cb57-b842-4126-ad73-c30aa2c95eb4 type: investor country: data: - id: da94252d-5ab5-4fe6-972a-2760f7b86900 + id: a1ce0569-9c6a-47b0-a5f4-cee7ace00086 type: location municipality: data: - id: ff00c0c8-7100-4cf2-a147-55e2c0a0a59f + id: 9b1e8605-961b-4833-9590-82677da9c972 type: location department: data: - id: effd0580-b45b-4167-9091-ae8916382c19 + id: 94347003-d4a1-4867-82fa-86af1bc64d8e type: location - - id: fbd61ac2-2e24-46a4-9d92-82b52a6f34bd + - id: 8460d41e-3690-4163-8b57-add0c90dcc4d type: open_call attributes: name: Yellow Banana @@ -6942,13 +6942,13 @@ paths: impact_description: Enim repellat pariatur. Earum modi eos. Libero tempora exercitationem. Qui dolorem quo. maximum_funding_per_project: 100000 - closing_at: '2024-09-22T14:59:49.125Z' + closing_at: '2024-09-23T10:22:44.637Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:59:49.129Z' - updated_at: '2023-11-22T14:59:49.138Z' + created_at: '2023-11-23T10:22:44.640Z' + updated_at: '2023-11-23T10:22:44.647Z' open_call_applications_count: 0 picture: analyzed: false @@ -6959,19 +6959,19 @@ paths: relationships: investor: data: - id: 793d2ec9-7d24-4cce-a417-701e14f6f774 + id: 90ab3079-d760-44b9-838d-d2c965454865 type: investor country: data: - id: 7887cc2a-f714-4849-bbdd-f5e7f9cdddf3 + id: 5816e8d6-f13f-46ad-b2f3-b062b8012f4c type: location municipality: data: - id: 0ac5d4a7-6d84-4450-8c77-1c73c4d5bdb2 + id: 81c21d5b-6204-47de-b265-8cae6627708c type: location department: data: - id: 129527f2-7fbf-460e-8f55-ace0ce87ae4a + id: 20e9fb8a-f135-4110-95a1-6fdd69a839df type: location meta: page: 1 @@ -7041,7 +7041,7 @@ paths: application/json: example: data: - id: fbd61ac2-2e24-46a4-9d92-82b52a6f34bd + id: 8460d41e-3690-4163-8b57-add0c90dcc4d type: open_call attributes: name: Yellow Banana @@ -7061,13 +7061,13 @@ paths: impact_description: Enim repellat pariatur. Earum modi eos. Libero tempora exercitationem. Qui dolorem quo. maximum_funding_per_project: 100000 - closing_at: '2024-09-22T14:59:49.125Z' + closing_at: '2024-09-23T10:22:44.637Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:59:49.129Z' - updated_at: '2023-11-22T14:59:49.138Z' + created_at: '2023-11-23T10:22:44.640Z' + updated_at: '2023-11-23T10:22:44.647Z' open_call_applications_count: 0 picture: analyzed: false @@ -7078,19 +7078,19 @@ paths: relationships: investor: data: - id: 793d2ec9-7d24-4cce-a417-701e14f6f774 + id: 90ab3079-d760-44b9-838d-d2c965454865 type: investor country: data: - id: 7887cc2a-f714-4849-bbdd-f5e7f9cdddf3 + id: 5816e8d6-f13f-46ad-b2f3-b062b8012f4c type: location municipality: data: - id: 0ac5d4a7-6d84-4450-8c77-1c73c4d5bdb2 + id: 81c21d5b-6204-47de-b265-8cae6627708c type: location department: data: - id: 129527f2-7fbf-460e-8f55-ace0ce87ae4a + id: 20e9fb8a-f135-4110-95a1-6fdd69a839df type: location schema: type: object @@ -7181,7 +7181,7 @@ paths: application/json: example: data: - - id: 7e3612b4-60dd-49cc-bd99-828a1521d254 + - id: f065f3c1-c506-49ea-9636-139bc0b80478 type: project_developer attributes: name: Bartoletti and Sons @@ -7206,7 +7206,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:59:50.063Z' + created_at: '2023-11-23T10:22:45.555Z' contact_email: contact_phone: picture: @@ -7218,21 +7218,21 @@ paths: relationships: owner: data: - id: 37167c97-06f2-4fbb-8962-9a9005dbf42c + id: 340167d7-04e1-48f2-9d84-26f44f4d2766 type: user projects: data: - - id: 4289a7f7-537e-4754-8827-1e15da45d95f + - id: '09c24305-12d5-4b61-9fd1-88214a978cf7' type: project involved_projects: data: [] priority_landscapes: data: - - id: 0610bfe5-16a4-47e4-9e51-580faf5ab98b + - id: 51a16b47-48cd-47c7-9a9d-b418611a72c1 type: location - - id: 8f5734c4-4694-4f03-8772-2daf1d6374b5 + - id: cda5a900-c3db-4461-a526-9e5a6ca85417 type: location - - id: e112e044-d083-4e43-bc85-6df9d267cb7c + - id: 497f6601-171a-4068-8d7d-12675011e90a type: project_developer attributes: name: Becker LLC @@ -7257,7 +7257,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:59:50.464Z' + created_at: '2023-11-23T10:22:45.821Z' contact_email: contact_phone: picture: @@ -7269,7 +7269,7 @@ paths: relationships: owner: data: - id: 1158e919-a143-44c6-986a-8624a1641e56 + id: 5ae4e036-ccab-432d-8238-ca34922d2f39 type: user projects: data: [] @@ -7277,11 +7277,11 @@ paths: data: [] priority_landscapes: data: - - id: 183db547-faf2-4ff4-bbc2-2be640da600d + - id: 8e76b88f-806a-4e17-9819-7a7bfa2e9d2b type: location - - id: 654f2049-5f63-4bb3-b794-e41725f9a4e1 + - id: da23094c-f674-448f-a60a-31fbe132bbc4 type: location - - id: cad4b944-03d5-45bd-839f-4a6d0b120a3f + - id: 818bdb2e-5652-4057-8cad-04e25b10a96b type: project_developer attributes: name: Hane, Lehner and Goyette @@ -7306,7 +7306,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:59:50.180Z' + created_at: '2023-11-23T10:22:45.614Z' contact_email: contact_phone: picture: @@ -7318,21 +7318,21 @@ paths: relationships: owner: data: - id: 21ebd36a-9c88-4fb4-8c50-06df811e4176 + id: 33bad606-c874-4daf-8eb9-d3cf494dc687 type: user projects: data: - - id: 8069880a-6e52-40f8-a0f8-e96f85c680d7 + - id: 88f724de-ed9c-4461-b465-349f94b50497 type: project involved_projects: data: [] priority_landscapes: data: - - id: a8fa5c83-fd62-411c-8581-30e2307d0fb5 + - id: 59721046-cf6d-46c9-a83b-c6f5708bbc49 type: location - - id: dc1fed59-f56e-440e-9bc6-d78962a37f35 + - id: 93de5f37-aaba-4c22-909d-a9ea374df455 type: location - - id: bdd2b18a-5687-444e-b5d0-f6477106cab3 + - id: acc010f2-9158-4575-a685-93a68ae1d306 type: project_developer attributes: name: Hilpert, Waters and Johnston @@ -7357,7 +7357,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:59:50.375Z' + created_at: '2023-11-23T10:22:45.716Z' contact_email: contact_phone: picture: @@ -7369,7 +7369,7 @@ paths: relationships: owner: data: - id: eb14582c-7cfd-4616-a6a1-3c0eac858872 + id: 540f5145-7a53-49e4-bec1-a7e04a445d46 type: user projects: data: [] @@ -7377,11 +7377,11 @@ paths: data: [] priority_landscapes: data: - - id: b4354ffc-2d4e-4619-a627-ff365ab8c663 + - id: 8c5fe493-a737-4b45-a666-5558c35be4c6 type: location - - id: f51bbce6-15b0-4538-a087-bd844f48efbd + - id: cc410d2d-f4da-4c90-a2b9-8f896ae2caec type: location - - id: 93f7eaa6-2b72-470f-b593-719f63cbb413 + - id: e4f6f14f-683a-4b89-ac07-2c7ffcde860e type: project_developer attributes: name: Jacobson, Fritsch and Stanton @@ -7406,7 +7406,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:59:50.405Z' + created_at: '2023-11-23T10:22:45.747Z' contact_email: contact_phone: picture: @@ -7418,7 +7418,7 @@ paths: relationships: owner: data: - id: 50ea26aa-ca22-4382-832a-243336c5b1b2 + id: e99ea7d1-e7e1-40a7-8094-998d1552e2e1 type: user projects: data: [] @@ -7426,11 +7426,11 @@ paths: data: [] priority_landscapes: data: - - id: b7652a5c-f77e-4eed-8361-66aaae1d4933 + - id: 0ea190fb-b154-473f-aa1e-546024bae9ef type: location - - id: d811ecf6-6714-447d-a846-d642d34b61b2 + - id: 5183cf9c-2e95-43cf-83d8-2cbb39d021b9 type: location - - id: f6a11453-8ffa-4f3a-b750-8ab0f00d21c1 + - id: 566656e8-08a0-4823-b097-ba7d24412fa3 type: project_developer attributes: name: Keebler, Kub and Zemlak @@ -7455,7 +7455,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:59:50.435Z' + created_at: '2023-11-23T10:22:45.791Z' contact_email: contact_phone: picture: @@ -7467,7 +7467,7 @@ paths: relationships: owner: data: - id: a22075f8-ab68-41d4-abdb-8a6e0c30c726 + id: 97dc735a-c4a4-43b2-ab99-f8c334992bc8 type: user projects: data: [] @@ -7475,11 +7475,11 @@ paths: data: [] priority_landscapes: data: - - id: '08fc8ffc-8b04-4855-82e4-f2a253b745b3' + - id: 5e18f0e2-c80a-4555-871a-a35bbbc4370c type: location - - id: a2cc0321-82fc-4cae-9e72-284f4ebf62f3 + - id: 84a118a2-f058-4880-8806-ff6bd861910a type: location - - id: 6753505a-7945-4b03-8f15-9e6dc4a06542 + - id: 151e9129-edb0-49ff-a4b2-f4a96ee5d1c9 type: project_developer attributes: name: Kutch-Spencer @@ -7494,7 +7494,7 @@ paths: mission: Yellow Banana project_developer_type: ngo categories: - - tourism-and-recreation + - sustainable-tourism impacts: - climate - water @@ -7502,7 +7502,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:59:50.313Z' + created_at: '2023-11-23T10:22:45.652Z' contact_email: contact_phone: picture: @@ -7514,23 +7514,23 @@ paths: relationships: owner: data: - id: 0a2cde84-3160-4c7d-a4d2-d9c69fcae9d1 + id: 2166e8c7-b0f2-40f6-b3d2-c19e6206699c type: user projects: data: [] involved_projects: data: - - id: 4289a7f7-537e-4754-8827-1e15da45d95f + - id: '09c24305-12d5-4b61-9fd1-88214a978cf7' type: project - - id: 8069880a-6e52-40f8-a0f8-e96f85c680d7 + - id: 88f724de-ed9c-4461-b465-349f94b50497 type: project priority_landscapes: data: - - id: 2d978aca-ae18-43c7-9878-0563e131a3f3 + - id: 5040b5ce-485b-48ab-87da-7d9277394ce0 type: location - - id: d8cd5ddf-73cb-48e5-8272-4a361be3b1e2 + - id: 7c18a706-f5b7-45b1-b9a6-34f76436a4a4 type: location - - id: 856a0893-b9fe-466b-b778-8b06442beaab + - id: b7570ad6-aae9-4643-a0dc-9503bc402e5c type: project_developer attributes: name: Lind, Langworth and Gottlieb @@ -7554,7 +7554,7 @@ paths: account_language: pt entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:59:50.617Z' + created_at: '2023-11-23T10:22:45.966Z' contact_email: contact_phone: picture: @@ -7566,7 +7566,7 @@ paths: relationships: owner: data: - id: 58546c09-c882-4f7a-8b88-17710b69a683 + id: f3750ae7-933f-4293-a551-76bf8d82ef9a type: user projects: data: [] @@ -7574,11 +7574,11 @@ paths: data: [] priority_landscapes: data: - - id: 2b1178d8-80d0-4ca8-8cc1-dd5cfbd6bc01 + - id: 4d8db1ce-5561-4dc0-b1b1-c0c94ab28ee1 type: location - - id: 6e99dfaf-1acb-496d-b425-380c6a7971b1 + - id: b3d2a234-5dd7-4270-8a95-48a99baa17b4 type: location - - id: c0059880-5cdb-4f21-b63b-b010ce00b4e3 + - id: 10d83799-739f-497b-9fca-b9948c8c0ff8 type: project_developer attributes: name: Ritchie, Glover and Ward @@ -7603,7 +7603,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:59:50.523Z' + created_at: '2023-11-23T10:22:45.880Z' contact_email: contact_phone: picture: @@ -7615,7 +7615,7 @@ paths: relationships: owner: data: - id: bbffd147-d39f-4efc-a30c-cf1319fba34e + id: 7127e13e-9ab3-471a-88f8-1ef03d2dca43 type: user projects: data: [] @@ -7623,11 +7623,11 @@ paths: data: [] priority_landscapes: data: - - id: 48777322-fead-42a4-ba84-38438cacc485 + - id: 5bffb6c6-1578-4fa6-ba80-f451880e4a12 type: location - - id: 824eb774-26bd-4d62-8cc9-549e38060c5a + - id: f982a659-396f-4a5f-845a-5cd91c6d703c type: location - - id: 0b24892c-8a02-463c-9db8-7eab6b2162e8 + - id: ab5af2a3-65d7-48d4-94d6-b10ef21b8e66 type: project_developer attributes: name: Runolfsson and Sons @@ -7652,7 +7652,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:59:50.493Z' + created_at: '2023-11-23T10:22:45.850Z' contact_email: contact_phone: picture: @@ -7664,7 +7664,7 @@ paths: relationships: owner: data: - id: feae8408-1ba4-48c1-bafe-82cef83f658f + id: 8c5e32a3-be2c-4515-b328-f2720d8cf4fc type: user projects: data: [] @@ -7672,9 +7672,9 @@ paths: data: [] priority_landscapes: data: - - id: 42839dae-9651-432e-8a0f-fd8e9b1dbea5 + - id: 29c9f81f-36bc-4b6d-8b01-176991119ae3 type: location - - id: f221751f-456c-481e-af4f-ffe8cd904f50 + - id: e996b91d-0456-4359-97d2-485ca060bfaf type: location meta: page: 1 @@ -7744,7 +7744,7 @@ paths: application/json: example: data: - id: 6753505a-7945-4b03-8f15-9e6dc4a06542 + id: 151e9129-edb0-49ff-a4b2-f4a96ee5d1c9 type: project_developer attributes: name: Kutch-Spencer @@ -7759,7 +7759,7 @@ paths: mission: Yellow Banana project_developer_type: ngo categories: - - tourism-and-recreation + - sustainable-tourism impacts: - climate - water @@ -7767,7 +7767,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:59:50.313Z' + created_at: '2023-11-23T10:22:45.652Z' contact_email: contact_phone: picture: @@ -7779,21 +7779,21 @@ paths: relationships: owner: data: - id: 0a2cde84-3160-4c7d-a4d2-d9c69fcae9d1 + id: 2166e8c7-b0f2-40f6-b3d2-c19e6206699c type: user projects: data: [] involved_projects: data: - - id: 4289a7f7-537e-4754-8827-1e15da45d95f + - id: '09c24305-12d5-4b61-9fd1-88214a978cf7' type: project - - id: 8069880a-6e52-40f8-a0f8-e96f85c680d7 + - id: 88f724de-ed9c-4461-b465-349f94b50497 type: project priority_landscapes: data: - - id: 2d978aca-ae18-43c7-9878-0563e131a3f3 + - id: 5040b5ce-485b-48ab-87da-7d9277394ce0 type: location - - id: d8cd5ddf-73cb-48e5-8272-4a361be3b1e2 + - id: 7c18a706-f5b7-45b1-b9a6-34f76436a4a4 type: location schema: type: object @@ -7867,49 +7867,49 @@ paths: application/json: example: data: - - id: ed4477ec-c80c-421a-9928-4b323cd0bb5d + - id: 4e8c8a0c-92bb-4c0b-958b-af0f076ca813 type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: 25c7ddc3-7a3d-46d8-bf49-3186e579c2d4 + - id: 981cf1ee-e245-484f-84ec-8e7d62bf94ae type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: a069c36d-21fc-47df-9488-dc1095c30842 + - id: 6b6a9c37-cd70-45dd-82af-233133cdf7bd type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: 285d83e5-6e61-499b-9daf-ccfd3321812b + - id: eb9faff0-6f63-4bd2-b70f-d7db65d7b3a5 type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: eaf84f1c-5476-4bd1-96cc-8c4284aa5395 + - id: 7a85acd9-f58f-43a7-8263-8bfe8abf43b1 type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: 9dccace5-9060-429a-90ee-7b41edd80c1f + - id: 1228cd4a-1cc4-4d4a-8672-0b0ea71562a6 type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: ec403819-13fc-47df-84d9-1ded5c572c01 + - id: 18ed2095-9129-4691-8188-28c6853d755e type: project_map attributes: verified: false @@ -8053,7 +8053,7 @@ paths: application/json: example: data: - - id: ed74b926-3838-4849-80dd-4f046f9c7dd0 + - id: f30c531e-1f2b-4967-9e8c-24924fb1a9d2 type: project attributes: name: Project 1 @@ -8118,8 +8118,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:59:52.299Z' - updated_at: '2023-11-22T14:59:52.299Z' + created_at: '2023-11-23T10:22:47.533Z' + updated_at: '2023-11-23T10:22:47.533Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -8154,19 +8154,19 @@ paths: relationships: project_developer: data: - id: fc77b553-12ca-4feb-ba7a-c4c82476da15 + id: 23485d19-71a2-47f8-9824-d6cb454bc4d0 type: project_developer country: data: - id: 47003811-6d8e-4826-8194-a9dc36ccc93e + id: bbba3fcc-97ab-49ed-b6b7-4fdead637c82 type: location municipality: data: - id: c8040c5a-f882-4f27-9c51-92b85c1428a1 + id: 5307afd6-b57a-4623-a583-fe47a7e43087 type: location department: data: - id: 3cb914e3-14eb-43ad-b183-ff3408d5a846 + id: ee30430e-8599-463c-90dd-a70fb0ab6269 type: location priority_landscape: data: @@ -8174,7 +8174,7 @@ paths: data: [] project_images: data: [] - - id: 1961d939-a44b-42ce-bbf9-a8cbef25c8af + - id: 35a805f5-1344-4dfd-90f7-d98b51ac6844 type: project attributes: name: Project 2 @@ -8239,8 +8239,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:59:52.363Z' - updated_at: '2023-11-22T14:59:52.363Z' + created_at: '2023-11-23T10:22:47.590Z' + updated_at: '2023-11-23T10:22:47.590Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -8274,19 +8274,19 @@ paths: relationships: project_developer: data: - id: 9bc1045a-1889-4dc3-8182-5e3d6ebaa964 + id: 7d98ab78-0856-4741-8749-ae98ced35dae type: project_developer country: data: - id: b03db00d-0159-44e1-a7d4-3a605c5dfa67 + id: 6bd854c7-4b26-4bf6-9a4e-d9dc0f8504c3 type: location municipality: data: - id: 4323fb99-4b69-4c4e-90f9-17a4a189b5ed + id: eb041d1c-a33c-4fb4-b6b3-6734f90cb207 type: location department: data: - id: b5fa04ea-3a57-43ba-861a-61af8abf80dd + id: 8c22f4e1-2fa0-4c56-bb80-6461db9732c3 type: location priority_landscape: data: @@ -8294,7 +8294,7 @@ paths: data: [] project_images: data: [] - - id: bbba9902-64ba-42b8-ae0d-b8c9df43b9ca + - id: fd8dee8f-84ff-4ddd-8db6-71b824616926 type: project attributes: name: Project 3 @@ -8359,8 +8359,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:59:52.432Z' - updated_at: '2023-11-22T14:59:52.432Z' + created_at: '2023-11-23T10:22:47.647Z' + updated_at: '2023-11-23T10:22:47.647Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -8395,19 +8395,19 @@ paths: relationships: project_developer: data: - id: 659c906a-c8f4-436c-bf86-07f97ff5b549 + id: 63048145-ae29-4685-8a86-0bda866380f1 type: project_developer country: data: - id: baad41b7-1a5b-49bf-b504-c7175d5fff20 + id: 2910a7f1-c6bf-43f5-b69b-84cb55100b9c type: location municipality: data: - id: c342b949-5230-4137-8acc-4db7e4668f2e + id: 5c0ed912-d12a-4be9-98b5-7d1863d21d89 type: location department: data: - id: d8f632e1-7024-4833-8191-46873af0d52f + id: ae1c333a-54d6-4fb7-9162-42f2bf45ea45 type: location priority_landscape: data: @@ -8415,7 +8415,7 @@ paths: data: [] project_images: data: [] - - id: 30460601-9f5e-42ac-bc17-bf9315678f32 + - id: bdd5756f-b183-473b-9e74-2c9a628ad956 type: project attributes: name: Project 4 @@ -8480,8 +8480,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:59:52.493Z' - updated_at: '2023-11-22T14:59:52.493Z' + created_at: '2023-11-23T10:22:47.708Z' + updated_at: '2023-11-23T10:22:47.708Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -8514,19 +8514,19 @@ paths: relationships: project_developer: data: - id: d64ce40c-389a-43cf-87e2-2ea291f3f082 + id: 30b63c9f-ac26-44e8-a3ee-c690abc3b54b type: project_developer country: data: - id: 956c5f16-3f92-4975-859e-ac70433e7c76 + id: 603830c7-a1a1-4c88-9eef-dda87c667c9d type: location municipality: data: - id: 9c87d266-870d-4682-8779-6ca1dab8ee7c + id: 53a1cd8d-5e33-4986-b3cf-ef4d404681d3 type: location department: data: - id: 221f11f8-106b-4b89-9acc-b29669543b36 + id: b73ba041-22ae-4441-9f2d-dfba8193b91f type: location priority_landscape: data: @@ -8534,7 +8534,7 @@ paths: data: [] project_images: data: [] - - id: ccedbf81-4f1e-4175-8fa3-2fc82cbbd1e9 + - id: 848527e8-114e-4c0b-80bf-bb2b901fe6c1 type: project attributes: name: Project 5 @@ -8599,8 +8599,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:59:52.550Z' - updated_at: '2023-11-22T14:59:52.550Z' + created_at: '2023-11-23T10:22:47.766Z' + updated_at: '2023-11-23T10:22:47.766Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -8635,19 +8635,19 @@ paths: relationships: project_developer: data: - id: 73228673-d606-4dae-ac9f-3412dd63953a + id: 31b4ce97-71d7-48fd-9029-2cc9f354ae4f type: project_developer country: data: - id: 76195e04-11ce-4c6f-b8aa-13624d06e720 + id: 255c400d-0127-4935-92e3-2f2dadb82911 type: location municipality: data: - id: d2e83b5f-059a-458b-91c7-3a0cf1c267f2 + id: 89e08e5f-8f4b-4bb7-97f5-672b707c8146 type: location department: data: - id: 02faedbb-607c-40f5-85fa-0b3315708314 + id: 1a09f6ea-bfc7-4795-862b-4df4e5c0c44e type: location priority_landscape: data: @@ -8655,7 +8655,7 @@ paths: data: [] project_images: data: [] - - id: 31d4fd28-a144-4a24-8366-96eb9e429ab6 + - id: 91b1baf4-4e2e-468d-8a70-8630082b7c92 type: project attributes: name: Project 6 @@ -8720,8 +8720,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:59:52.611Z' - updated_at: '2023-11-22T14:59:52.611Z' + created_at: '2023-11-23T10:22:47.821Z' + updated_at: '2023-11-23T10:22:47.821Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -8754,19 +8754,19 @@ paths: relationships: project_developer: data: - id: c964890b-5dfd-4219-82b9-21a67e71549e + id: ffc80c1d-102e-4ec7-b3cf-17b88ee6ee6a type: project_developer country: data: - id: fb4ab687-fa19-40c0-adc6-e625afb801f0 + id: abe41571-05f8-4f26-9114-ec5eee097194 type: location municipality: data: - id: d5112946-77f5-457a-ab96-6f5e79afeadb + id: fc24f8ef-5e01-473c-86a3-c4bfe3824ee9 type: location department: data: - id: c25db65e-7115-47b8-871c-1b707131b18e + id: da6a7817-de90-4257-9047-7d9e155ab99f type: location priority_landscape: data: @@ -8774,7 +8774,7 @@ paths: data: [] project_images: data: [] - - id: 637de82a-944b-4b1a-9a33-448448797b0c + - id: 7c1b2519-44a7-4058-bbc9-93e6d8c14ec9 type: project attributes: name: Project 9 @@ -8838,8 +8838,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:59:52.841Z' - updated_at: '2023-11-22T14:59:52.841Z' + created_at: '2023-11-23T10:22:48.041Z' + updated_at: '2023-11-23T10:22:48.041Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -8872,19 +8872,19 @@ paths: relationships: project_developer: data: - id: dee5b715-661f-4ea6-a674-020d248a8375 + id: 65283965-a26f-4866-954a-297393b662b3 type: project_developer country: data: - id: a56d25e8-3ce4-431a-9bda-aa7f7751896d + id: 9cf8203c-e06f-4c73-9e0c-e6756c8cc7fe type: location municipality: data: - id: 00fafa35-8eff-4065-b16b-26151bc42dc4 + id: 5e86644c-9464-4f9f-9bbf-6deaf6c2bfb3 type: location department: data: - id: 7b17411a-eb29-4854-842d-d16cf086089e + id: 625b7e05-0263-4715-ba39-788a6140a459 type: location priority_landscape: data: @@ -8892,7 +8892,7 @@ paths: data: [] project_images: data: [] - - id: 3c122a73-104e-49a0-9472-549c48186ec9 + - id: a29a23f4-de7e-417c-b575-a7fcfbb6aa9c type: project attributes: name: Yellow Banana @@ -8953,8 +8953,8 @@ paths: - - 0.0 - 0.0 verified: false - created_at: '2023-11-22T14:59:52.222Z' - updated_at: '2023-11-22T14:59:52.222Z' + created_at: '2023-11-23T10:22:47.462Z' + updated_at: '2023-11-23T10:22:47.462Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -8989,35 +8989,35 @@ paths: relationships: project_developer: data: - id: cbd7141e-56f7-49c0-9401-5c0457dbed40 + id: 7af7fca5-c95a-41b6-9e1d-0f53cccc4a5b type: project_developer country: data: - id: a9a4abe8-d98b-4a2b-b74f-f4b7a16800c7 + id: a0ad0e76-6c79-4938-9af3-fb587cfbd47a type: location municipality: data: - id: 3e84239c-42f3-40db-be8f-651cb02cdf8a + id: db1479cc-4d4a-409a-91b1-d12625fbdaaf type: location department: data: - id: 97855a53-9afe-4e21-8ab0-ca7c54b30843 + id: 5ef28813-08e6-4e3d-b4d4-3f9e0ee67e6e type: location priority_landscape: data: - id: 3b230343-2e17-415b-8c17-c10727c91039 + id: 505663cd-9f98-4932-983b-5786dd1f26e1 type: location involved_project_developers: data: - - id: 29350eff-23c1-4cf0-b96e-c9aa17a9661a + - id: 73b7b58b-4f19-455d-8e64-c2e3ea042a5b type: project_developer - - id: 1dd30093-3236-4626-a040-7672ad575263 + - id: 1f855d95-2c8d-4981-a1f5-2ee8dc501ab1 type: project_developer project_images: data: - - id: 7567388a-671a-4cbe-aa88-60c6eddaab0d + - id: 23cce0ac-8950-47bb-94e2-be6bc7b0fb6d type: project_image - - id: 7239cbfc-a568-4134-9790-587220e14c8d + - id: ab61358c-e399-4e33-95d5-a075bdd766c6 type: project_image meta: page: 1 @@ -9087,7 +9087,7 @@ paths: application/json: example: data: - id: 3c122a73-104e-49a0-9472-549c48186ec9 + id: a29a23f4-de7e-417c-b575-a7fcfbb6aa9c type: project attributes: name: Yellow Banana @@ -9148,8 +9148,8 @@ paths: - - 0.0 - 0.0 verified: false - created_at: '2023-11-22T14:59:52.222Z' - updated_at: '2023-11-22T14:59:52.222Z' + created_at: '2023-11-23T10:22:47.462Z' + updated_at: '2023-11-23T10:22:47.462Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -9184,35 +9184,35 @@ paths: relationships: project_developer: data: - id: cbd7141e-56f7-49c0-9401-5c0457dbed40 + id: 7af7fca5-c95a-41b6-9e1d-0f53cccc4a5b type: project_developer country: data: - id: a9a4abe8-d98b-4a2b-b74f-f4b7a16800c7 + id: a0ad0e76-6c79-4938-9af3-fb587cfbd47a type: location municipality: data: - id: 3e84239c-42f3-40db-be8f-651cb02cdf8a + id: db1479cc-4d4a-409a-91b1-d12625fbdaaf type: location department: data: - id: 97855a53-9afe-4e21-8ab0-ca7c54b30843 + id: 5ef28813-08e6-4e3d-b4d4-3f9e0ee67e6e type: location priority_landscape: data: - id: 3b230343-2e17-415b-8c17-c10727c91039 + id: 505663cd-9f98-4932-983b-5786dd1f26e1 type: location involved_project_developers: data: - - id: 29350eff-23c1-4cf0-b96e-c9aa17a9661a + - id: 73b7b58b-4f19-455d-8e64-c2e3ea042a5b type: project_developer - - id: 1dd30093-3236-4626-a040-7672ad575263 + - id: 1f855d95-2c8d-4981-a1f5-2ee8dc501ab1 type: project_developer project_images: data: - - id: 7567388a-671a-4cbe-aa88-60c6eddaab0d + - id: 23cce0ac-8950-47bb-94e2-be6bc7b0fb6d type: project_image - - id: 7239cbfc-a568-4134-9790-587220e14c8d + - id: ab61358c-e399-4e33-95d5-a075bdd766c6 type: project_image schema: type: object @@ -9260,14 +9260,14 @@ paths: application/json: example: data: - id: b4afcf6c-9de2-4075-b7fe-cc6c8b74b37d + id: 2a175cf4-3b3c-465c-9439-cd000cfebb6f type: user attributes: first_name: Dawna last_name: Block email: user@example.com role: light - created_at: '2023-11-22T14:59:53.816Z' + created_at: '2023-11-23T10:22:48.842Z' ui_language: en account_language: otp_required_for_login: false @@ -9323,14 +9323,14 @@ paths: application/json: example: data: - id: 2fd84849-d208-49bc-b94f-23cebc80a912 + id: 11bbccf3-4076-4874-a353-ef896d0de772 type: user attributes: first_name: Dawna last_name: Block email: user@example.com role: light - created_at: '2023-11-22T14:59:53.944Z' + created_at: '2023-11-23T10:22:48.953Z' ui_language: en account_language: otp_required_for_login: false @@ -9455,14 +9455,14 @@ paths: application/json: example: data: - id: bb7b1603-f21c-4398-ba22-382168b03b23 + id: aa6b5d06-e2f0-46e7-bf3c-aec432f931bd type: user attributes: first_name: Jan last_name: Kowalski email: jankowalski@example.com role: light - created_at: '2023-11-22T14:59:54.388Z' + created_at: '2023-11-23T10:22:49.496Z' ui_language: en account_language: otp_required_for_login: false @@ -9551,14 +9551,14 @@ paths: application/json: example: data: - id: 80dac956-e92a-4b7f-8757-8be3cb34f32b + id: 02cdb051-7414-42bb-864c-5d75f3f5045a type: user attributes: first_name: New First Name last_name: New Last Name email: user@example.com role: light - created_at: '2023-11-22T14:59:54.321Z' + created_at: '2023-11-23T10:22:49.439Z' ui_language: en account_language: otp_required_for_login: true @@ -9621,14 +9621,14 @@ paths: application/json: example: data: - id: 80dac956-e92a-4b7f-8757-8be3cb34f32b + id: 02cdb051-7414-42bb-864c-5d75f3f5045a type: user attributes: first_name: Dawna last_name: Block email: user@example.com role: light - created_at: '2023-11-22T14:59:54.321Z' + created_at: '2023-11-23T10:22:49.439Z' ui_language: en account_language: otp_required_for_login: false @@ -9712,19 +9712,19 @@ paths: content: application/json: example: - id: eab14ded-3249-4955-978b-4329e333a596 - key: 8i4lyc6a5t2s5p1czi1cdd425wqa + id: 13f9e9cf-d4b5-432f-bc45-00e4819183ab + key: j0phr23ndgpp3g41zq01p2po0cnh filename: test.jpg content_type: image/jpeg metadata: {} service_name: test byte_size: 32326 checksum: QYeLAwqIj9HrwITqtTYaEw== - created_at: '2023-11-22T14:59:55.454Z' - signed_id: eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaEpJaWxsWVdJeE5HUmxaQzB6TWpRNUxUUTVOVFV0T1RjNFlpMDBNekk1WlRNek0yRTFPVFlHT2daRlZBPT0iLCJleHAiOm51bGwsInB1ciI6ImJsb2JfaWQifX0=--ba3c75b1905117404e5b8de6dc0c4f0df02ccb79 - attachable_sgid: eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaEpJbFpuYVdRNkx5OWlZV05yWlc1a0wwRmpkR2wyWlZOMGIzSmhaMlU2T2tKc2IySXZaV0ZpTVRSa1pXUXRNekkwT1MwME9UVTFMVGszT0dJdE5ETXlPV1V6TXpOaE5UazJQMlY0Y0dseVpYTmZhVzRHT2daRlZBPT0iLCJleHAiOm51bGwsInB1ciI6ImF0dGFjaGFibGUifX0=--66476be61fd0cee2980f90505692f739dbbad8b7 + created_at: '2023-11-23T10:22:50.361Z' + signed_id: eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaEpJaWt4TTJZNVpUbGpaaTFrTkdJMUxUUXpNbVl0WW1NME5TMHdNR1UwT0RFNU1UZ3pZV0lHT2daRlZBPT0iLCJleHAiOm51bGwsInB1ciI6ImJsb2JfaWQifX0=--df3e12818c0fee6867788741b67319f00ff3dbd5 + attachable_sgid: eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaEpJbFpuYVdRNkx5OWlZV05yWlc1a0wwRmpkR2wyWlZOMGIzSmhaMlU2T2tKc2IySXZNVE5tT1dVNVkyWXRaRFJpTlMwME16Sm1MV0pqTkRVdE1EQmxORGd4T1RFNE0yRmlQMlY0Y0dseVpYTmZhVzRHT2daRlZBPT0iLCJleHAiOm51bGwsInB1ciI6ImF0dGFjaGFibGUifX0=--2c8486987f1f335d9b1a980d82e1e81fad4d237a direct_upload: - url: http://www.example.com/backend/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDam9JYTJWNVNTSWhPR2swYkhsak5tRTFkREp6TlhBeFkzcHBNV05rWkRReU5YZHhZUVk2QmtWVU9oRmpiMjUwWlc1MFgzUjVjR1ZKSWc5cGJXRm5aUzlxY0dWbkJqc0dWRG9UWTI5dWRHVnVkRjlzWlc1bmRHaHBBa1orT2cxamFHVmphM04xYlVraUhWRlpaVXhCZDNGSmFqbEljbmRKVkhGMFZGbGhSWGM5UFFZN0JsUTZFWE5sY25acFkyVmZibUZ0WlRvSmRHVnpkQT09IiwiZXhwIjoiMjAyMy0xMS0yMlQxNTowNDo1NS40NTZaIiwicHVyIjoiYmxvYl90b2tlbiJ9fQ==--e38513f319525f8ad370c38f71ebbec965fd2d3b + url: http://www.example.com/backend/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDam9JYTJWNVNTSWhhakJ3YUhJeU0yNWtaM0J3TTJjME1YcHhNREZ3TW5Cdk1HTnVhQVk2QmtWVU9oRmpiMjUwWlc1MFgzUjVjR1ZKSWc5cGJXRm5aUzlxY0dWbkJqc0dWRG9UWTI5dWRHVnVkRjlzWlc1bmRHaHBBa1orT2cxamFHVmphM04xYlVraUhWRlpaVXhCZDNGSmFqbEljbmRKVkhGMFZGbGhSWGM5UFFZN0JsUTZFWE5sY25acFkyVmZibUZ0WlRvSmRHVnpkQT09IiwiZXhwIjoiMjAyMy0xMS0yM1QxMDoyNzo1MC4zNjJaIiwicHVyIjoiYmxvYl90b2tlbiJ9fQ==--30085f9fce8151e945195a9f0bef7be8b347ab2f headers: Content-Type: image/jpeg schema: diff --git a/frontend/components/project-map-pin/component.tsx b/frontend/components/project-map-pin/component.tsx index 6ee30a744..607db2ca6 100644 --- a/frontend/components/project-map-pin/component.tsx +++ b/frontend/components/project-map-pin/component.tsx @@ -39,7 +39,7 @@ export const ProjectMapPin: FC = ({ category, interactive = // icon={trusted ? TrustedMapPinIcon : MapPinIcon} icon={MapPinIcon} className={cx({ - 'fill-category-tourism text-category-tourism': category === 'tourism-and-recreation', + 'fill-category-tourism text-category-tourism': category === 'sustainable-tourism', 'fill-category-production text-category-production': category === 'non-timber-forest-production', 'fill-category-agrosystems text-category-agrosystems': diff --git a/frontend/containers/category-tag/category-tag-dot/component.tsx b/frontend/containers/category-tag/category-tag-dot/component.tsx index d917a19d7..8dd36a177 100644 --- a/frontend/containers/category-tag/category-tag-dot/component.tsx +++ b/frontend/containers/category-tag/category-tag-dot/component.tsx @@ -14,7 +14,7 @@ export const CategoryTagDot: FC = ({ 'w-8 h-8': size === 'large', 'w-4 h-4 mr-4 ': size === 'small', 'w-2 h-2 mr-2': size === 'smallest', - 'bg-category-tourism': category === 'tourism-and-recreation', + 'bg-category-tourism': category === 'sustainable-tourism', 'bg-category-production': category === 'non-timber-forest-production', 'bg-category-agrosystems': category === 'sustainable-agrosystems', 'bg-category-forestry': category === 'forestry-and-agroforestry', diff --git a/frontend/containers/category-tag/component.stories.tsx b/frontend/containers/category-tag/component.stories.tsx index 0e6752e19..238fa99c7 100644 --- a/frontend/containers/category-tag/component.stories.tsx +++ b/frontend/containers/category-tag/component.stories.tsx @@ -14,6 +14,6 @@ const Template: Story = ({ children, ...rest }: CategoryTagPro export const Default: Story = Template.bind({}); Default.args = { - category: 'tourism-and-recreation', - children: 'Tourism & Recreation', + category: 'sustainable-tourism', + children: 'Sustainable Tourism', }; diff --git a/frontend/containers/impact-chart/component.stories.tsx b/frontend/containers/impact-chart/component.stories.tsx index 2e1920452..4361e2bdc 100644 --- a/frontend/containers/impact-chart/component.stories.tsx +++ b/frontend/containers/impact-chart/component.stories.tsx @@ -29,23 +29,23 @@ const CompactTemplate: Story = (args) => ( export const Default = Template.bind({}); Default.args = { impact: projectImpact(projectMock as unknown as ProjectType)[ImpactAreas.Municipality], - category: 'tourism-and-recreation', + category: 'sustainable-tourism', }; export const Placeholder = Template.bind({}); Placeholder.args = { - category: 'tourism-and-recreation', + category: 'sustainable-tourism', }; export const Compact = CompactTemplate.bind({}); Compact.args = { compactMode: true, impact: projectImpact(projectMock as unknown as ProjectType)[ImpactAreas.Municipality], - category: 'tourism-and-recreation', + category: 'sustainable-tourism', }; export const CompactPlaceholder = CompactTemplate.bind({}); CompactPlaceholder.args = { compactMode: true, - category: 'tourism-and-recreation', + category: 'sustainable-tourism', }; diff --git a/frontend/containers/tags-grid/component.stories.tsx b/frontend/containers/tags-grid/component.stories.tsx index ee2029750..ea442a803 100644 --- a/frontend/containers/tags-grid/component.stories.tsx +++ b/frontend/containers/tags-grid/component.stories.tsx @@ -18,7 +18,7 @@ Default.args = { title: 'Invests in', type: 'category', tags: [ - { id: 'tourism-and-recreation', name: 'Tourism & Recreation' }, + { id: 'sustainable-tourism', name: 'Sustainable Tourism' }, { id: 'non-timber-forest-production', name: 'Non-timber forest production' }, { id: 'sustainable-agrosystems', name: 'Sustainable agrosystems' }, { id: 'forestry-and-agroforestry', name: 'Forestry & agroforestry' }, diff --git a/frontend/lang/transifex/zu.json b/frontend/lang/transifex/zu.json index 114026386..7560ae60e 100644 --- a/frontend/lang/transifex/zu.json +++ b/frontend/lang/transifex/zu.json @@ -2428,7 +2428,7 @@ "string": "Project financial instrument" }, "hOp4Ue": { - "string": "Tourism and recreation" + "string": "Sustainable Tourism" }, "hPsrc0": { "string": "insert your answer (max 600 characters)" diff --git a/frontend/mockups/api/v1/account/project_developer.json b/frontend/mockups/api/v1/account/project_developer.json index 71e4d07b5..2ad0b3519 100644 --- a/frontend/mockups/api/v1/account/project_developer.json +++ b/frontend/mockups/api/v1/account/project_developer.json @@ -13,7 +13,7 @@ "twitter": "https://twitter.com/pdorganizationtest1", "mission": "Mission Test organization 1. This organization's mission is to find sustainable tourism solutions for the Amazon region. ", "project_developer_type": "ngo", - "categories": ["tourism-and-recreation"], + "categories": ["sustainable-tourism"], "impacts": ["biodiversity", "climate", "water", "community"], "language": "en", "entity_legal_registration_number": "1234567890", diff --git a/frontend/mockups/api/v1/enums.json b/frontend/mockups/api/v1/enums.json index 1d9ebb311..da35c2eae 100644 --- a/frontend/mockups/api/v1/enums.json +++ b/frontend/mockups/api/v1/enums.json @@ -10,10 +10,10 @@ } }, { - "id": "tourism-and-recreation", + "id": "sustainable-tourism", "type": "category", "attributes": { - "name": "Tourism and Recreation", + "name": "Sustainable Tourism", "color": "#4492E5", "description": "Accommodation, travel, transportation, hospitality, visitor experiences and eco-tourism projects." } diff --git a/frontend/mockups/filters.json b/frontend/mockups/filters.json index bdf21d5d0..d8660ff9e 100644 --- a/frontend/mockups/filters.json +++ b/frontend/mockups/filters.json @@ -7,7 +7,7 @@ "description": "Agricultura sustentável e regenerativa, pesca e aquicultura, bem como a fabricação de subprodutos derivados." }, { - "id": "tourism-and-recreation", + "id": "sustainable-tourism", "type": "category", "name": "Turismo e Lazer", "color": "#4492E5", diff --git a/frontend/mockups/project.json b/frontend/mockups/project.json index b26ff5bb0..5581431f4 100644 --- a/frontend/mockups/project.json +++ b/frontend/mockups/project.json @@ -90,7 +90,7 @@ "twitter": "", "mission": "Lorem ipsum sit amet woof", "project_developer_type": "academic", - "categories": ["sustainable-agrosystems", "tourism-and-recreation"], + "categories": ["sustainable-agrosystems", "sustainable-tourism"], "impacts": ["biodiversity", "community"], "language": "en", "entity_legal_registration_number": "212432423423", @@ -139,7 +139,7 @@ "project_developer_type": "academic", "categories": [ "sustainable-agrosystems", - "tourism-and-recreation" + "sustainable-tourism" ], "impacts": [ "biodiversity", diff --git a/frontend/types/category.ts b/frontend/types/category.ts index b24295098..aa136bc24 100644 --- a/frontend/types/category.ts +++ b/frontend/types/category.ts @@ -1,6 +1,6 @@ export type CategoryType = | 'sustainable-agrosystems' - | 'tourism-and-recreation' + | 'sustainable-tourism' | 'forestry-and-agroforestry' | 'non-timber-forest-production' | 'human-capital-and-inclusion';