From 8e1f4e1a739855b79ddb96a671d255b1f0d99202 Mon Sep 17 00:00:00 2001 From: yulia-bel Date: Tue, 21 Nov 2023 09:35:36 +0100 Subject: [PATCH 01/10] Add new attributes to Project --- .../api/v1/accounts/projects_controller.rb | 4 ++++ .../controllers/backoffice/projects_controller.rb | 4 ++++ backend/app/models/project.rb | 5 ++++- .../app/serializers/api/v1/project_serializer.rb | 6 +++++- .../app/views/backoffice/projects/_form.html.erb | 6 +++++- backend/config/locales/zu.yml | 4 ++++ ...inancial_and_climate_change_data_to_projects.rb | 14 ++++++++++++++ 7 files changed, 40 insertions(+), 3 deletions(-) create mode 100644 backend/db/migrate/20231120155058_add_financial_and_climate_change_data_to_projects.rb diff --git a/backend/app/controllers/api/v1/accounts/projects_controller.rb b/backend/app/controllers/api/v1/accounts/projects_controller.rb index ec35f2397..bf3196c8c 100644 --- a/backend/app/controllers/api/v1/accounts/projects_controller.rb +++ b/backend/app/controllers/api/v1/accounts/projects_controller.rb @@ -109,6 +109,10 @@ def update_params :progress_impact_tracking, :description, :relevant_links, + :positive_financial_returns, + :last_year_sales_revenue, + :climate_change_risks_details, + :climate_change_risks_identified, target_groups: [], impact_areas: [], sdgs: [], diff --git a/backend/app/controllers/backoffice/projects_controller.rb b/backend/app/controllers/backoffice/projects_controller.rb index 0a87f3ce2..187811e7b 100644 --- a/backend/app/controllers/backoffice/projects_controller.rb +++ b/backend/app/controllers/backoffice/projects_controller.rb @@ -85,6 +85,10 @@ def update_params :description, :relevant_links, :verified, + :positive_financial_returns, + :last_year_sales_revenue, + :climate_change_risks_details, + :climate_change_risks_identified, instrument_types: [], impact_areas: [], sdgs: [], diff --git a/backend/app/models/project.rb b/backend/app/models/project.rb index 3ca9d2e7a..ea57ee64a 100644 --- a/backend/app/models/project.rb +++ b/backend/app/models/project.rb @@ -35,7 +35,10 @@ class Project < ApplicationRecord :replicability, :funding_plan, :progress_impact_tracking, - :relevant_links + :relevant_links, + :positive_financial_returns, + :last_year_sales_revenue, + :climate_change_risks_details enum status: ProjectStatus::TYPES_WITH_CODE, _default: :published ransacker :status, formatter: proc { |v| statuses[v] } diff --git a/backend/app/serializers/api/v1/project_serializer.rb b/backend/app/serializers/api/v1/project_serializer.rb index 7ca4a083b..63480ceb6 100644 --- a/backend/app/serializers/api/v1/project_serializer.rb +++ b/backend/app/serializers/api/v1/project_serializer.rb @@ -52,7 +52,11 @@ class ProjectSerializer < BaseSerializer :priority_landscape_water_impact, :priority_landscape_community_impact, :priority_landscape_total_impact, - :impact_calculated + :impact_calculated, + :positive_financial_returns, + :last_year_sales_revenue, + :climate_change_risks_details, + :climate_change_risks_identified belongs_to :project_developer belongs_to :country, serializer: LocationSerializer diff --git a/backend/app/views/backoffice/projects/_form.html.erb b/backend/app/views/backoffice/projects/_form.html.erb index 83f5f9520..91f9754ca 100644 --- a/backend/app/views/backoffice/projects/_form.html.erb +++ b/backend/app/views/backoffice/projects/_form.html.erb @@ -47,7 +47,7 @@ <%= localized_input f, :solution, content_language, label: t("simple_form.labels.project.solution"), as: :text, input_html: {rows: 5} %> <%= f.input :target_groups, collection: ProjectTargetGroup.all, label: t("simple_form.labels.project.target_groups"), as: :check_boxes %> <%= localized_input f, :expected_impact, content_language, label: t("simple_form.labels.project.expected_impact"), as: :text, input_html: {rows: 5} %> - +

<%= t(".impact") %>

@@ -71,6 +71,10 @@ <%= f.input :received_funding_amount_usd, label: t("simple_form.labels.project.received_funding_amount_usd") %> <%= f.input :received_funding_investor, label: t("simple_form.labels.project.received_funding_investor"), as: :string %> + <%= localized_input f, :positive_financial_returns, content_language, label: t("simple_form.labels.project.positive_financial_returns"), as: :text, input_html: {rows: 5} %> + <%= localized_input f, :last_year_sales_revenue, content_language, label: t("simple_form.labels.project.last_year_sales_revenue"), as: :text, input_html: {rows: 5} %> + <%= f.input :climate_change_risks_identified, label: t("simple_form.labels.project.climate_change_risks_identified"), as: :radio_buttons %> + <%= localized_input f, :climate_change_risks_details, content_language, label: t("simple_form.labels.climate_change_risks_details"), as: :text, input_html: {rows: 5} %>

<%= t(".how_will_project_grow") %> diff --git a/backend/config/locales/zu.yml b/backend/config/locales/zu.yml index b749752f9..0380f97f3 100644 --- a/backend/config/locales/zu.yml +++ b/backend/config/locales/zu.yml @@ -84,6 +84,10 @@ zu: progress_impact_tracking: Progress and impact tracking description: Short description of the project relevant_links: Relevant links (optional) + positive_financial_returns: If your current business model generates positive financial returns, please explain what they consist of + last_year_sales_revenue: What was the sales revenue in the last fiscal year-end? + climate_change_risks_identified: Has the project identified the risks of climate change to which the business is exposed and potential mitigation strategies? + climate_change_risks_details: If yes, please, discribe these risks open_call: name: Open call name picture: Picture diff --git a/backend/db/migrate/20231120155058_add_financial_and_climate_change_data_to_projects.rb b/backend/db/migrate/20231120155058_add_financial_and_climate_change_data_to_projects.rb new file mode 100644 index 000000000..e64376aa8 --- /dev/null +++ b/backend/db/migrate/20231120155058_add_financial_and_climate_change_data_to_projects.rb @@ -0,0 +1,14 @@ +class AddFinancialAndClimateChangeDataToProjects < ActiveRecord::Migration[7.0] + def change + add_column :projects, :positive_financial_returns_en, :text, null: true + add_column :projects, :positive_financial_returns_es, :text, null: true + add_column :projects, :positive_financial_returns_pt, :text, null: true + add_column :projects, :last_year_sales_revenue_en, :text, null: true + add_column :projects, :last_year_sales_revenue_es, :text, null: true + add_column :projects, :last_year_sales_revenue_pt, :text, null: true + add_column :projects, :climate_change_risks_details_en, :text, null: true + add_column :projects, :climate_change_risks_details_es, :text, null: true + add_column :projects, :climate_change_risks_details_pt, :text, null: true + add_column :projects, :climate_change_risks_identified, :boolean, default: false + end +end From 821ef8053c7dd34c97121ec3147393a974a9ccfc Mon Sep 17 00:00:00 2001 From: yulia-bel Date: Tue, 21 Nov 2023 11:08:16 +0100 Subject: [PATCH 02/10] Update tests and factories to include new project attributes --- .../app/views/backoffice/projects/_form.html.erb | 2 +- backend/spec/factories/project.rb | 16 ++++++++++++++++ backend/spec/system/backoffice/projects_spec.rb | 8 ++++++++ 3 files changed, 25 insertions(+), 1 deletion(-) diff --git a/backend/app/views/backoffice/projects/_form.html.erb b/backend/app/views/backoffice/projects/_form.html.erb index 91f9754ca..dd766d89d 100644 --- a/backend/app/views/backoffice/projects/_form.html.erb +++ b/backend/app/views/backoffice/projects/_form.html.erb @@ -74,7 +74,7 @@ <%= localized_input f, :positive_financial_returns, content_language, label: t("simple_form.labels.project.positive_financial_returns"), as: :text, input_html: {rows: 5} %> <%= localized_input f, :last_year_sales_revenue, content_language, label: t("simple_form.labels.project.last_year_sales_revenue"), as: :text, input_html: {rows: 5} %> <%= f.input :climate_change_risks_identified, label: t("simple_form.labels.project.climate_change_risks_identified"), as: :radio_buttons %> - <%= localized_input f, :climate_change_risks_details, content_language, label: t("simple_form.labels.climate_change_risks_details"), as: :text, input_html: {rows: 5} %> + <%= localized_input f, :climate_change_risks_details, content_language, label: t("simple_form.labels.project.climate_change_risks_details"), as: :text, input_html: {rows: 5} %>

<%= t(".how_will_project_grow") %> diff --git a/backend/spec/factories/project.rb b/backend/spec/factories/project.rb index 2a2244162..4f59d0325 100644 --- a/backend/spec/factories/project.rb +++ b/backend/spec/factories/project.rb @@ -50,6 +50,22 @@ Faker::Lorem.paragraph(sentence_count: 4) end + sequence(:positive_financial_returns) do |n| + Faker::Config.random = Random.new(n) + Faker::Lorem.paragraph(sentence_count: 2) + end + sequence(:last_year_sales_revenue) do |n| + Faker::Config.random = Random.new(n) + Faker::Lorem.paragraph(sentence_count: 1) + end + + climate_change_risks_identified { true } + + sequence(:limate_change_risks_details) do |n| + Faker::Config.random = Random.new(n) + Faker::Lorem.paragraph(sentence_count: 2) + end + looking_for_funding { true } instrument_types { %w[grant loan] } ticket_size { "scaling" } diff --git a/backend/spec/system/backoffice/projects_spec.rb b/backend/spec/system/backoffice/projects_spec.rb index 3c170bc69..aebc42984 100644 --- a/backend/spec/system/backoffice/projects_spec.rb +++ b/backend/spec/system/backoffice/projects_spec.rb @@ -197,6 +197,10 @@ choose "Yes", name: "project[received_funding]" fill_in t("simple_form.labels.project.received_funding_amount_usd"), with: 10000 fill_in t("simple_form.labels.project.received_funding_investor"), with: "Investor" + fill_in t("simple_form.labels.project.positive_financial_returns"), with: "Positive financial returns" + fill_in t("simple_form.labels.project.last_year_sales_revenue"), with: "Last year sales revenue" + choose "Yes", name: "project[climate_change_risks_identified]" + fill_in t("simple_form.labels.climate_change_risks_details"), with: "Climate change risks identified" fill_in t("simple_form.labels.project.replicability"), with: "New replicability" fill_in t("simple_form.labels.project.sustainability"), with: "New sustainability" fill_in t("simple_form.labels.project.progress_impact_tracking"), with: "New progress impact tracking" @@ -233,6 +237,10 @@ expect(project.received_funding).to be_truthy expect(project.received_funding_amount_usd).to eq(10000) expect(project.received_funding_investor).to eq("Investor") + expect(project.positive_financial_returns).to eq("Positive financial returns") + expect(project.last_year_sales_revenue).to eq("Last year sales revenue") + expect(project.climate_change_risks_identified).to be_truthy + expect(project.climate_change_risks_details).to eq("Climate change risks identified") expect(project.replicability).to eq("New replicability") expect(project.sustainability).to eq("New sustainability") expect(project.progress_impact_tracking).to eq("New progress impact tracking") From 47ca636b5a461281dfb551175fc57cfcda0a22ec Mon Sep 17 00:00:00 2001 From: yulia-bel Date: Tue, 21 Nov 2023 16:01:25 +0100 Subject: [PATCH 03/10] Update tests, factories and snapshots to include new project attributes --- backend/Gemfile.lock | 2 +- backend/db/schema.rb | 12 ++++- backend/spec/factories/project.rb | 2 +- .../open-call-applications-create.json | 6 ++- .../api/v1/account/projects-favourites.json | 6 ++- .../snapshots/api/v1/account/projects.json | 18 +++++-- .../api/v1/accounts-project-create.json | 6 ++- .../api/v1/accounts-project-update.json | 6 ++- ...oject-developer-include-relationships.json | 12 ++++- .../snapshots/api/v1/get-project.json | 6 ++- ...ject-developers-include-relationships.json | 12 ++++- .../fixtures/snapshots/api/v1/projects.json | 48 +++++++++++++++---- .../requests/api/v1/accounts/projects_spec.rb | 10 +++- .../spec/system/backoffice/projects_spec.rb | 2 +- 14 files changed, 123 insertions(+), 25 deletions(-) diff --git a/backend/Gemfile.lock b/backend/Gemfile.lock index 104f552ac..bbd1ac104 100644 --- a/backend/Gemfile.lock +++ b/backend/Gemfile.lock @@ -427,7 +427,7 @@ GEM railties (>= 5.0) retriable (3.1.2) rexml (3.2.5) - rgeo (2.4.0) + rgeo (3.0.1) rgeo-activerecord (7.0.1) activerecord (>= 5.0) rgeo (>= 1.0.0) diff --git a/backend/db/schema.rb b/backend/db/schema.rb index bc404a0be..04300e051 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_02_03_122726) do +ActiveRecord::Schema[7.0].define(version: 2023_11_20_155058) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" enable_extension "postgis" @@ -419,6 +419,16 @@ t.boolean "municipality_demands_calculated", default: false t.boolean "hydrobasin_demands_calculated", default: false t.boolean "priority_landscape_demands_calculated", default: false + t.text "positive_financial_returns_en" + t.text "positive_financial_returns_es" + t.text "positive_financial_returns_pt" + t.text "last_year_sales_revenue_en" + t.text "last_year_sales_revenue_es" + t.text "last_year_sales_revenue_pt" + t.text "climate_change_risks_details_en" + t.text "climate_change_risks_details_es" + t.text "climate_change_risks_details_pt" + t.boolean "climate_change_risks_identified", default: false t.index ["country_id"], name: "index_projects_on_country_id" t.index ["department_id"], name: "index_projects_on_department_id" t.index ["municipality_id"], name: "index_projects_on_municipality_id" diff --git a/backend/spec/factories/project.rb b/backend/spec/factories/project.rb index 4f59d0325..506a19600 100644 --- a/backend/spec/factories/project.rb +++ b/backend/spec/factories/project.rb @@ -61,7 +61,7 @@ climate_change_risks_identified { true } - sequence(:limate_change_risks_details) do |n| + sequence(:climate_change_risks_details) do |n| Faker::Config.random = Random.new(n) Faker::Lorem.paragraph(sentence_count: 2) end diff --git a/backend/spec/fixtures/snapshots/api/v1/account/open-call-applications-create.json b/backend/spec/fixtures/snapshots/api/v1/account/open-call-applications-create.json index 10e694e3a..2bcb2a746 100644 --- a/backend/spec/fixtures/snapshots/api/v1/account/open-call-applications-create.json +++ b/backend/spec/fixtures/snapshots/api/v1/account/open-call-applications-create.json @@ -142,7 +142,11 @@ "latitude": 39.21309022641362, "longitude": -5.87810037515931, "favourite": false, - "funded": null + "funded": null, + "positive_financial_returns": "Enim repellat pariatur. Earum modi eos.", + "last_year_sales_revenue": "Enim repellat pariatur.", + "climate_change_risks_details": "Enim repellat pariatur. Earum modi eos.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { diff --git a/backend/spec/fixtures/snapshots/api/v1/account/projects-favourites.json b/backend/spec/fixtures/snapshots/api/v1/account/projects-favourites.json index 0bcdcd660..215bc55e2 100644 --- a/backend/spec/fixtures/snapshots/api/v1/account/projects-favourites.json +++ b/backend/spec/fixtures/snapshots/api/v1/account/projects-favourites.json @@ -106,7 +106,11 @@ "latitude": 39.21309022641362, "longitude": -5.87810037515931, "favourite": true, - "funded": null + "funded": null, + "positive_financial_returns": "Enim repellat pariatur. Earum modi eos.", + "last_year_sales_revenue": "Enim repellat pariatur.", + "climate_change_risks_details": "Enim repellat pariatur. Earum modi eos.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { diff --git a/backend/spec/fixtures/snapshots/api/v1/account/projects.json b/backend/spec/fixtures/snapshots/api/v1/account/projects.json index faf7fe9d2..7b5f63261 100644 --- a/backend/spec/fixtures/snapshots/api/v1/account/projects.json +++ b/backend/spec/fixtures/snapshots/api/v1/account/projects.json @@ -106,7 +106,11 @@ "latitude": 39.21309022641362, "longitude": -5.87810037515931, "favourite": false, - "funded": null + "funded": null, + "positive_financial_returns": "Dolores fugiat nesciunt. Ut laborum dolores.", + "last_year_sales_revenue": "Dolores fugiat nesciunt.", + "climate_change_risks_details": "Dolores fugiat nesciunt. Ut laborum dolores.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { @@ -254,7 +258,11 @@ "latitude": 39.21309022641362, "longitude": -5.87810037515931, "favourite": false, - "funded": null + "funded": null, + "positive_financial_returns": "Placeat commodi libero. Quo recusandae repellat.", + "last_year_sales_revenue": "Placeat commodi libero.", + "climate_change_risks_details": "Placeat commodi libero. Quo recusandae repellat.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { @@ -402,7 +410,11 @@ "latitude": 39.21309022641362, "longitude": -5.87810037515931, "favourite": false, - "funded": null + "funded": null, + "positive_financial_returns": "Enim repellat pariatur. Earum modi eos.", + "last_year_sales_revenue": "Enim repellat pariatur.", + "climate_change_risks_details": "Enim repellat pariatur. Earum modi eos.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { diff --git a/backend/spec/fixtures/snapshots/api/v1/accounts-project-create.json b/backend/spec/fixtures/snapshots/api/v1/accounts-project-create.json index 3b0b9b113..6136afaa0 100644 --- a/backend/spec/fixtures/snapshots/api/v1/accounts-project-create.json +++ b/backend/spec/fixtures/snapshots/api/v1/accounts-project-create.json @@ -106,7 +106,11 @@ "project_climate_impact": null, "project_water_impact": null, "project_community_impact": null, - "project_total_impact": null + "project_total_impact": null, + "positive_financial_returns": null, + "last_year_sales_revenue": null, + "climate_change_risks_details": null, + "climate_change_risks_identified": false }, "relationships": { "project_developer": { diff --git a/backend/spec/fixtures/snapshots/api/v1/accounts-project-update.json b/backend/spec/fixtures/snapshots/api/v1/accounts-project-update.json index 7d88017c5..b880f771f 100644 --- a/backend/spec/fixtures/snapshots/api/v1/accounts-project-update.json +++ b/backend/spec/fixtures/snapshots/api/v1/accounts-project-update.json @@ -76,7 +76,11 @@ "project_climate_impact": null, "project_water_impact": null, "project_community_impact": null, - "project_total_impact": null + "project_total_impact": null, + "positive_financial_returns": "Updated financial returns data", + "last_year_sales_revenue": "Updated year sales revenues", + "climate_change_risks_details": "Updated climate risk details", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { diff --git a/backend/spec/fixtures/snapshots/api/v1/get-project-developer-include-relationships.json b/backend/spec/fixtures/snapshots/api/v1/get-project-developer-include-relationships.json index f79a6f1ab..e1d5376cb 100644 --- a/backend/spec/fixtures/snapshots/api/v1/get-project-developer-include-relationships.json +++ b/backend/spec/fixtures/snapshots/api/v1/get-project-developer-include-relationships.json @@ -127,7 +127,11 @@ "latitude": 39.21309022641362, "longitude": -5.87810037515931, "favourite": null, - "funded": null + "funded": null, + "positive_financial_returns": "Enim repellat pariatur. Earum modi eos.", + "last_year_sales_revenue": "Enim repellat pariatur.", + "climate_change_risks_details": "Enim repellat pariatur. Earum modi eos.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { @@ -278,7 +282,11 @@ "latitude": 39.21309022641362, "longitude": -5.87810037515931, "favourite": null, - "funded": null + "funded": null, + "positive_financial_returns": "Placeat commodi libero. Quo recusandae repellat.", + "last_year_sales_revenue": "Placeat commodi libero.", + "climate_change_risks_details": "Placeat commodi libero. Quo recusandae repellat.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { diff --git a/backend/spec/fixtures/snapshots/api/v1/get-project.json b/backend/spec/fixtures/snapshots/api/v1/get-project.json index 00203a75c..2d4a884de 100644 --- a/backend/spec/fixtures/snapshots/api/v1/get-project.json +++ b/backend/spec/fixtures/snapshots/api/v1/get-project.json @@ -97,7 +97,11 @@ "project_climate_impact": null, "project_water_impact": null, "project_community_impact": null, - "project_total_impact": null + "project_total_impact": null, + "positive_financial_returns": "Enim repellat pariatur. Earum modi eos.", + "last_year_sales_revenue": "Enim repellat pariatur.", + "climate_change_risks_details": "Enim repellat pariatur. Earum modi eos.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { diff --git a/backend/spec/fixtures/snapshots/api/v1/project-developers-include-relationships.json b/backend/spec/fixtures/snapshots/api/v1/project-developers-include-relationships.json index 22cca0181..45c152227 100644 --- a/backend/spec/fixtures/snapshots/api/v1/project-developers-include-relationships.json +++ b/backend/spec/fixtures/snapshots/api/v1/project-developers-include-relationships.json @@ -255,7 +255,11 @@ "latitude": 39.21309022641362, "longitude": -5.87810037515931, "favourite": null, - "funded": null + "funded": null, + "positive_financial_returns": "Enim repellat pariatur. Earum modi eos.", + "last_year_sales_revenue": "Enim repellat pariatur.", + "climate_change_risks_details": "Enim repellat pariatur. Earum modi eos.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { @@ -406,7 +410,11 @@ "latitude": 39.21309022641362, "longitude": -5.87810037515931, "favourite": null, - "funded": null + "funded": null, + "positive_financial_returns": "Placeat commodi libero. Quo recusandae repellat.", + "last_year_sales_revenue": "Placeat commodi libero.", + "climate_change_risks_details": "Placeat commodi libero. Quo recusandae repellat.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { diff --git a/backend/spec/fixtures/snapshots/api/v1/projects.json b/backend/spec/fixtures/snapshots/api/v1/projects.json index 4fba72c84..b952655df 100644 --- a/backend/spec/fixtures/snapshots/api/v1/projects.json +++ b/backend/spec/fixtures/snapshots/api/v1/projects.json @@ -106,7 +106,11 @@ "latitude": 39.21309022641362, "longitude": -5.87810037515931, "favourite": null, - "funded": null + "funded": null, + "positive_financial_returns": "Placeat commodi libero. Quo recusandae repellat.", + "last_year_sales_revenue": "Placeat commodi libero.", + "climate_change_risks_details": "Placeat commodi libero. Quo recusandae repellat.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { @@ -254,7 +258,11 @@ "latitude": 39.21309022641362, "longitude": -5.87810037515931, "favourite": null, - "funded": null + "funded": null, + "positive_financial_returns": "Et quaerat omnis. Harum voluptas atque.", + "last_year_sales_revenue": "Et quaerat omnis.", + "climate_change_risks_details": "Et quaerat omnis. Harum voluptas atque.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { @@ -402,7 +410,11 @@ "latitude": 39.21309022641362, "longitude": -5.87810037515931, "favourite": null, - "funded": null + "funded": null, + "positive_financial_returns": "Dolores fugiat nesciunt. Ut laborum dolores.", + "last_year_sales_revenue": "Dolores fugiat nesciunt.", + "climate_change_risks_details": "Dolores fugiat nesciunt. Ut laborum dolores.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { @@ -550,7 +562,11 @@ "latitude": 39.21309022641362, "longitude": -5.87810037515931, "favourite": null, - "funded": null + "funded": null, + "positive_financial_returns": "Autem et et. Voluptatem neque quibusdam.", + "last_year_sales_revenue": "Autem et et.", + "climate_change_risks_details": "Autem et et. Voluptatem neque quibusdam.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { @@ -698,7 +714,11 @@ "latitude": 39.21309022641362, "longitude": -5.87810037515931, "favourite": null, - "funded": null + "funded": null, + "positive_financial_returns": "Porro soluta beatae. Quia ratione facilis.", + "last_year_sales_revenue": "Porro soluta beatae.", + "climate_change_risks_details": "Porro soluta beatae. Quia ratione facilis.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { @@ -846,7 +866,11 @@ "latitude": 39.21309022641362, "longitude": -5.87810037515931, "favourite": null, - "funded": null + "funded": null, + "positive_financial_returns": "Mollitia aut vel. Qui illum accusantium.", + "last_year_sales_revenue": "Mollitia aut vel.", + "climate_change_risks_details": "Mollitia aut vel. Qui illum accusantium.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { @@ -994,7 +1018,11 @@ "latitude": 39.21309022641362, "longitude": -5.87810037515931, "favourite": null, - "funded": null + "funded": null, + "positive_financial_returns": "Tempora excepturi et. Et quia sit.", + "last_year_sales_revenue": "Tempora excepturi et.", + "climate_change_risks_details": "Tempora excepturi et. Et quia sit.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { @@ -1134,7 +1162,11 @@ "latitude": 0.5, "longitude": 0.5, "favourite": null, - "funded": null + "funded": null, + "positive_financial_returns": "Enim repellat pariatur. Earum modi eos.", + "last_year_sales_revenue": "Enim repellat pariatur.", + "climate_change_risks_details": "Enim repellat pariatur. Earum modi eos.", + "climate_change_risks_identified": true }, "relationships": { "project_developer": { diff --git a/backend/spec/requests/api/v1/accounts/projects_spec.rb b/backend/spec/requests/api/v1/accounts/projects_spec.rb index d670c704b..e58f04a79 100644 --- a/backend/spec/requests/api/v1/accounts/projects_spec.rb +++ b/backend/spec/requests/api/v1/accounts/projects_spec.rb @@ -29,6 +29,10 @@ received_funding: {type: :boolean}, received_funding_amount_usd: {type: :number}, received_funding_investor: {type: :string}, + positive_financial_returns: {type: :string}, + last_year_sales_revenue: {type: :string}, + climate_change_risks_details: {type: :string}, + climate_change_risks_identified: {type: :boolean}, replicability: {type: :string}, sustainability: {type: :string}, progress_impact_tracking: {type: :string}, @@ -297,7 +301,11 @@ impact_areas: %w[restoration pollutants-reduction], sdgs: [2, 4, 5], instrument_types: %w[grant], - locale: :en + locale: :en, + positive_financial_returns: "Updated financial returns data", + last_year_sales_revenue: "Updated year sales revenues", + climate_change_risks_details: "Updated climate risk details", + climate_change_risks_identified: true } end diff --git a/backend/spec/system/backoffice/projects_spec.rb b/backend/spec/system/backoffice/projects_spec.rb index aebc42984..2a4658c4d 100644 --- a/backend/spec/system/backoffice/projects_spec.rb +++ b/backend/spec/system/backoffice/projects_spec.rb @@ -200,7 +200,7 @@ fill_in t("simple_form.labels.project.positive_financial_returns"), with: "Positive financial returns" fill_in t("simple_form.labels.project.last_year_sales_revenue"), with: "Last year sales revenue" choose "Yes", name: "project[climate_change_risks_identified]" - fill_in t("simple_form.labels.climate_change_risks_details"), with: "Climate change risks identified" + fill_in t("simple_form.labels.project.climate_change_risks_details"), with: "Climate change risks identified" fill_in t("simple_form.labels.project.replicability"), with: "New replicability" fill_in t("simple_form.labels.project.sustainability"), with: "New sustainability" fill_in t("simple_form.labels.project.progress_impact_tracking"), with: "New progress impact tracking" From 0cca920ba392a73661d97a5c7048662e7921471d Mon Sep 17 00:00:00 2001 From: martintomas Date: Wed, 22 Nov 2023 15:57:51 +0100 Subject: [PATCH 04/10] chore: Update of rswag gem and fix of swagger schema --- backend/Gemfile.lock | 75 +- backend/spec/swagger_helper.rb | 3 + backend/swagger/v1/swagger.yaml | 1495 +++++++++++++++++-------------- 3 files changed, 865 insertions(+), 708 deletions(-) diff --git a/backend/Gemfile.lock b/backend/Gemfile.lock index bbd1ac104..cd88ce612 100644 --- a/backend/Gemfile.lock +++ b/backend/Gemfile.lock @@ -82,7 +82,7 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) - addressable (2.8.1) + addressable (2.8.5) public_suffix (>= 2.0.2, < 6.0) annotate (3.2.0) activerecord (>= 3.2, < 8.0) @@ -297,7 +297,7 @@ GEM grpc (~> 1.27) hashdiff (1.0.1) httpclient (2.8.3) - i18n (1.12.0) + i18n (1.14.1) concurrent-ruby (~> 1.0) image_processing (1.12.2) mini_magick (>= 4.9.5, < 5) @@ -307,8 +307,8 @@ GEM reline (>= 0.3.0) jsbundling-rails (1.0.2) railties (>= 6.0.0) - json-schema (2.8.1) - addressable (>= 2.4) + json-schema (3.0.0) + addressable (>= 2.8) jsonapi-serializer (2.2.0) activesupport (>= 4.2) jwt (2.3.0) @@ -321,9 +321,9 @@ GEM letter_opener (~> 1.7) railties (>= 5.2) rexml - loofah (2.19.1) + loofah (2.22.0) crass (~> 1.0.2) - nokogiri (>= 1.5.9) + nokogiri (>= 1.12.0) mail (2.8.1) mini_mime (>= 0.1.1) net-imap @@ -335,8 +335,8 @@ GEM method_source (1.0.0) mini_magick (4.11.0) mini_mime (1.1.2) - mini_portile2 (2.8.1) - minitest (5.18.0) + mini_portile2 (2.8.5) + minitest (5.20.0) msgpack (1.5.1) multi_json (1.15.0) multipart-post (2.1.1) @@ -350,12 +350,12 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.8) - nokogiri (1.14.3) - mini_portile2 (~> 2.8.0) + nokogiri (1.15.5) + mini_portile2 (~> 2.8.2) racc (~> 1.4) - nokogiri (1.14.3-x86_64-darwin) + nokogiri (1.15.5-x86_64-darwin) racc (~> 1.4) - nokogiri (1.14.3-x86_64-linux) + nokogiri (1.15.5-x86_64-linux) racc (~> 1.4) optimist (3.0.1) orm_adapter (0.5.0) @@ -371,12 +371,12 @@ GEM pg_search (2.3.6) activerecord (>= 5.2) activesupport (>= 5.2) - public_suffix (5.0.0) + public_suffix (5.0.4) puma (6.0.0) nio4r (~> 2.0) raabro (1.4.0) - racc (1.6.2) - rack (2.2.6.4) + racc (1.7.3) + rack (2.2.8) rack-test (2.1.0) rack (>= 1.3) rails (7.0.4.3) @@ -393,11 +393,13 @@ GEM activesupport (= 7.0.4.3) bundler (>= 1.15.0) railties (= 7.0.4.3) - rails-dom-testing (2.0.3) - activesupport (>= 4.2.0) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.5.0) - loofah (~> 2.19, >= 2.19.1) + rails-html-sanitizer (1.6.0) + loofah (~> 2.21) + nokogiri (~> 1.14) railties (7.0.4.3) actionpack (= 7.0.4.3) activesupport (= 7.0.4.3) @@ -406,7 +408,7 @@ GEM thor (~> 1.0) zeitwerk (~> 2.5) rainbow (3.1.1) - rake (13.0.6) + rake (13.1.0) ransack (3.2.1) activerecord (>= 6.1.5) activesupport (>= 6.1.5) @@ -458,20 +460,21 @@ GEM rspec-support (~> 3.11) rspec-retry (0.6.2) rspec-core (> 3.3) - rspec-support (3.11.0) - rswag (2.5.1) - rswag-api (= 2.5.1) - rswag-specs (= 2.5.1) - rswag-ui (= 2.5.1) - rswag-api (2.5.1) - railties (>= 3.1, < 7.1) - rswag-specs (2.5.1) - activesupport (>= 3.1, < 7.1) - json-schema (~> 2.2) - railties (>= 3.1, < 7.1) - rswag-ui (2.5.1) - actionpack (>= 3.1, < 7.1) - railties (>= 3.1, < 7.1) + rspec-support (3.11.1) + rswag (2.11.0) + rswag-api (= 2.11.0) + rswag-specs (= 2.11.0) + rswag-ui (= 2.11.0) + rswag-api (2.11.0) + railties (>= 3.1, < 7.2) + rswag-specs (2.11.0) + activesupport (>= 3.1, < 7.2) + json-schema (>= 2.2, < 4.0) + railties (>= 3.1, < 7.2) + rspec-core (>= 2.14) + rswag-ui (2.11.0) + actionpack (>= 3.1, < 7.2) + railties (>= 3.1, < 7.2) rubocop (1.28.2) parallel (~> 1.10) parser (>= 3.1.0.0) @@ -532,7 +535,7 @@ GEM tailwindcss-rails (2.0.8-x86_64-linux) railties (>= 6.0.0) test-prof (1.0.8) - thor (1.2.1) + thor (1.3.0) timeout (0.3.2) traco (5.3.3) activerecord (>= 4.2) @@ -562,7 +565,7 @@ GEM websocket-extensions (0.1.5) xpath (3.2.0) nokogiri (~> 1.8) - zeitwerk (2.6.7) + zeitwerk (2.6.12) PLATFORMS ruby diff --git a/backend/spec/swagger_helper.rb b/backend/spec/swagger_helper.rb index 6594bf399..2ed15df31 100644 --- a/backend/spec/swagger_helper.rb +++ b/backend/spec/swagger_helper.rb @@ -466,6 +466,9 @@ } }, servers: [ + { + url: "/" + }, { url: "/backend" }, diff --git a/backend/swagger/v1/swagger.yaml b/backend/swagger/v1/swagger.yaml index a5d720526..c62aafac7 100644 --- a/backend/swagger/v1/swagger.yaml +++ b/backend/swagger/v1/swagger.yaml @@ -40,7 +40,7 @@ paths: application/json: example: data: - id: bedb0157-527a-4b8d-97d9-50922796f0cf + id: 7a83a8b0-3e7f-4e47-bf61-1f4d8fe9130f type: investor attributes: name: Kutch-Spencer @@ -79,7 +79,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2022-10-26T08:13:32.338Z' + created_at: '2023-11-22T14:47:47.663Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -91,11 +91,11 @@ paths: relationships: owner: data: - id: 6a82139f-959b-44a5-9b1f-322e502e4967 + id: 9741c01b-a2a8-4a80-8497-33317d066540 type: user open_calls: data: - - id: ba96977b-13c5-47c0-b405-9b6f5a4259a3 + - id: 27577316-164b-41ea-a392-d0ddc5f08e82 type: open_call schema: type: object @@ -125,7 +125,7 @@ paths: application/json: example: data: - id: eb2d9ef1-0f38-4d2a-8529-9a1fc1279482 + id: 8a72952d-ae32-4d12-9721-b6bb132c551d type: investor attributes: name: Name @@ -159,7 +159,7 @@ paths: language: es account_language: es review_status: unapproved - created_at: '2022-10-26T08:13:32.976Z' + created_at: '2023-11-22T14:47:47.916Z' contact_email: contact_phone: picture: @@ -171,7 +171,7 @@ paths: relationships: owner: data: - id: ca6a820e-6a0e-4d0b-9c5c-cafae22fe929 + id: 0a90c8e9-6b7e-417e-b66d-892121a7a25c type: user open_calls: data: [] @@ -343,7 +343,7 @@ paths: application/json: example: data: - id: 17319147-51dd-43ab-8080-cbf7783515a2 + id: 4259f18a-db68-494d-9e1b-761f9b76c996 type: investor attributes: name: Name @@ -377,7 +377,7 @@ paths: language: es account_language: es review_status: approved - created_at: '2022-10-26T08:13:33.628Z' + created_at: '2023-11-22T14:47:48.160Z' contact_email: contact@example.com contact_phone: '123456789' picture: @@ -389,7 +389,7 @@ paths: relationships: owner: data: - id: 93ec8d58-b61a-4805-b551-73f95fedb00d + id: 858e1b58-2f47-44ea-a425-e2eb627272e7 type: user open_calls: data: [] @@ -566,7 +566,7 @@ paths: application/json: example: data: - - id: 20aec058-193c-4b2b-8e6c-cefecbf793c1 + - id: 56326cb5-e573-403f-ac35-131acb73011d type: investor attributes: name: Bartoletti and Sons @@ -605,7 +605,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2022-10-26T08:13:34.528Z' + created_at: '2023-11-22T14:47:48.530Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -617,7 +617,7 @@ paths: relationships: owner: data: - id: cd0dff81-b0ac-4fec-9d87-3bb2fbb25194 + id: cf49b25e-4ed5-402e-b4da-c792fd0bb6c5 type: user open_calls: data: [] @@ -705,55 +705,55 @@ paths: application/json: example: data: - - id: 38f18773-bf22-4815-831d-0e5a33fbfb68 + - id: 85f7ae8b-601b-4f3a-adb0-eeb71599073d type: open_call_application attributes: message: Dolores fugiat nesciunt. Ut laborum dolores. Sit neque eos. Expedita molestiae quia. funded: false - created_at: '2022-10-26T08:14:03.506Z' - updated_at: '2022-10-26T08:14:03.506Z' + created_at: '2023-11-22T14:47:57.064Z' + updated_at: '2023-11-22T14:47:57.064Z' relationships: open_call: data: - id: 9f622aa0-6a21-4a7e-a16e-0d439ce50060 + id: ce058875-a400-4a72-a1e7-33a983af91d7 type: open_call project: data: - id: 5cdaccd7-e2c9-4ef9-892e-b883ea4b25cb + id: 4bd25cdb-46ed-4170-81d6-e97246d23734 type: project project_developer: data: - id: 7e42045f-3577-4829-8a17-ff8500ba8636 + id: c62d84ae-9ace-48a8-b004-40c4669f9a49 type: project_developer investor: data: - id: 82e516fe-973f-44d4-bf4b-91de98f837c2 + id: b7b25ba4-cf9c-4266-a331-b7cca9a2ef17 type: investor - - id: 82014fdd-a8fa-4ee3-aefe-0267974fe625 + - id: 79459a06-00ef-4744-baf7-108c88e046fb type: open_call_application attributes: message: Et quaerat omnis. Harum voluptas atque. Quo nesciunt voluptas. Suscipit ex cum. funded: false - created_at: '2022-10-26T08:14:03.365Z' - updated_at: '2022-10-26T08:14:03.365Z' + created_at: '2023-11-22T14:47:56.988Z' + updated_at: '2023-11-22T14:47:56.988Z' relationships: open_call: data: - id: 11310917-0692-4fb8-ace3-bd46819bc9ff + id: 7c2ae55f-888d-41e0-8291-9767cf732150 type: open_call project: data: - id: ac0f0446-ce98-4d1c-b969-aae7bb8026ba + id: 57d21bd0-3020-4a4b-8cf0-a68f8c84f562 type: project project_developer: data: - id: 456e4dd7-d472-46d7-bf24-61d26988188c + id: 2b4951e8-3cd5-4cd2-a937-9e43cc93fb59 type: project_developer investor: data: - id: 82e516fe-973f-44d4-bf4b-91de98f837c2 + id: b7b25ba4-cf9c-4266-a331-b7cca9a2ef17 type: investor schema: type: object @@ -794,32 +794,32 @@ paths: application/json: example: data: - id: f2a394ca-df15-48a6-8138-da3f80360d10 + id: 5c2a7d8d-ac71-4a18-b53b-02477722a440 type: open_call_application attributes: message: This is message funded: false - created_at: '2022-10-26T08:14:08.567Z' - updated_at: '2022-10-26T08:14:08.567Z' + created_at: '2023-11-22T14:47:59.336Z' + updated_at: '2023-11-22T14:47:59.336Z' relationships: open_call: data: - id: 155a9b9b-d9cf-40ff-b0c1-a2b7c68c895f + id: d265f381-22b4-4450-ae65-70468b39c455 type: open_call project: data: - id: 49539b13-c953-4ea0-980a-365473d35c5b + id: bc53cad2-592b-474e-9e52-79696b82d7f0 type: project project_developer: data: - id: 1dce78ab-b409-423d-abc3-857ea2cfdd97 + id: 40db50db-2ee2-4973-856b-bc18445b62cc type: project_developer investor: data: - id: 1d9c90c5-8bb3-4f21-b395-cce302677c3c + id: 7a35aefc-a071-4a7e-9a48-00867b1801bd type: investor included: - - id: 49539b13-c953-4ea0-980a-365473d35c5b + - id: bc53cad2-592b-474e-9e52-79696b82d7f0 type: project attributes: name: Project 1 @@ -867,13 +867,30 @@ paths: language: en account_language: es geometry: - type: Point + type: Polygon coordinates: - - 1.0 - - 2.0 + - - - -7.256596802202454 + - 39.42149705239956 + - - -5.510236906689473 + - 40.02677860935444 + - - -4.408874148363334 + - 39.419930008870296 + - - -5.205992932301829 + - 38.67169482742881 + - - -6.402685625872827 + - 38.39721372248553 + - - -7.059852379049463 + - 38.94985978831832 + - - -7.256596802202454 + - 39.42149705239956 verified: false - created_at: '2022-10-26T08:14:08.445Z' - updated_at: '2022-10-26T08:14:08.445Z' + created_at: '2023-11-22T14:47:59.276Z' + updated_at: '2023-11-22T14:47:59.276Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: municipality_biodiversity_impact: municipality_climate_impact: municipality_water_impact: @@ -890,27 +907,26 @@ paths: priority_landscape_community_impact: priority_landscape_total_impact: impact_calculated: false - trusted: false - latitude: 2.0 - longitude: 1.0 + latitude: 39.21309022641362 + longitude: -5.87810037515931 favourite: false funded: relationships: project_developer: data: - id: 1dce78ab-b409-423d-abc3-857ea2cfdd97 + id: 40db50db-2ee2-4973-856b-bc18445b62cc type: project_developer country: data: - id: 1f046000-33f9-415f-be90-26ed9104ca15 + id: 8e502d40-5036-438c-a537-cbd546651865 type: location municipality: data: - id: eb72cf5c-47b0-4eb8-9327-e82bc4bdd7bd + id: 7716f1cd-52fc-4e1f-9a34-5fea91a7a1cd type: location department: data: - id: 94b310f7-58c9-4ca2-85ce-65cc6c0445d1 + id: 0432f1b0-41dd-4635-8d4c-4fea86efceea type: location priority_landscape: data: @@ -918,7 +934,7 @@ paths: data: [] project_images: data: [] - - id: 1dce78ab-b409-423d-abc3-857ea2cfdd97 + - id: 40db50db-2ee2-4973-856b-bc18445b62cc type: project_developer attributes: name: Kutch-Spencer @@ -943,7 +959,7 @@ paths: account_language: es entity_legal_registration_number: '564823570' review_status: approved - created_at: '2022-10-26T08:14:08.369Z' + created_at: '2023-11-22T14:47:59.241Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -955,19 +971,19 @@ paths: relationships: owner: data: - id: 34b6f97b-1933-4b1e-b3b7-0f04fc41ba9c + id: af9e9e5a-eb79-4ecc-bfd1-a072ed28410c type: user projects: data: - - id: 49539b13-c953-4ea0-980a-365473d35c5b + - id: bc53cad2-592b-474e-9e52-79696b82d7f0 type: project involved_projects: data: [] priority_landscapes: data: - - id: 549c6ee4-bfe2-4e24-b944-e71f25586123 + - id: 79b949b4-2ab2-4d8a-8649-6f150f080955 type: location - - id: d0211e03-8493-46ec-870b-bc8a6cae0fde + - id: 7bfa887c-fdb3-4b2f-85d4-853bf56497e9 type: location schema: type: object @@ -1055,30 +1071,30 @@ paths: application/json: example: data: - id: e40278c8-3005-4141-b2f3-e983208d281e + id: 7eb09816-6bb0-478c-af0e-9ea34dc8f2f8 type: open_call_application attributes: message: Enim repellat pariatur. Earum modi eos. Libero tempora exercitationem. Qui dolorem quo. funded: false - created_at: '2022-10-26T08:14:13.564Z' - updated_at: '2022-10-26T08:14:13.564Z' + created_at: '2023-11-22T14:48:01.456Z' + updated_at: '2023-11-22T14:48:01.456Z' relationships: open_call: data: - id: 6d12a58a-c9a5-4961-bf3e-a574e7fea585 + id: 372833ad-5a7b-42e9-a7b1-c32b0f82f025 type: open_call project: data: - id: b1ccdfab-eb7d-477b-9f4d-a7e686e64efc + id: f88e13c6-1029-4176-82ba-c705f45f9610 type: project project_developer: data: - id: 9b52b534-8569-4405-a3fa-fcd398c57ae5 + id: b0be0ab2-8938-45b0-800a-de93948e4457 type: project_developer investor: data: - id: ea509861-de76-4682-8817-b7c300588b02 + id: 4479f1c6-b0cd-48e5-904a-6e4b816bd90e type: investor schema: type: object @@ -1132,29 +1148,29 @@ paths: application/json: example: data: - id: 8a459fe9-dbf4-4a02-a014-5a3956f61451 + id: 5ecfb845-8683-4788-b533-62df562862c8 type: open_call_application attributes: message: This is updated text funded: false - created_at: '2022-10-26T08:14:15.568Z' - updated_at: '2022-10-26T08:14:15.601Z' + created_at: '2023-11-22T14:48:02.343Z' + updated_at: '2023-11-22T14:48:02.357Z' relationships: open_call: data: - id: 738fa088-50b9-4e49-8f58-02d35f441690 + id: 40a87bd6-8924-46d5-b6b4-f82c1a13a626 type: open_call project: data: - id: d347199f-84b3-4f30-9c68-1f6864e4d0c2 + id: 3b78d5ac-0c06-4b70-9635-1e58db830dc3 type: project project_developer: data: - id: 27c064e6-9d84-46c0-bb5a-87caf88533bc + id: 333421db-476d-44d7-a7de-c80dabdf282e type: project_developer investor: data: - id: 79adb21f-a504-4bc0-a5e9-a5175a76363d + id: 8c53ed4c-8319-454f-9164-a58f4b7d7a68 type: investor schema: type: object @@ -1365,7 +1381,7 @@ paths: application/json: example: data: - - id: ae1b1b3d-6762-4778-9e61-720d37987911 + - id: d9df0c55-4a9d-4ee8-baea-741d483844c0 type: open_call attributes: name: Open call 5 @@ -1385,15 +1401,14 @@ paths: impact_description: Porro soluta beatae. Quia ratione facilis. Eligendi sapiente voluptatem. Quas rerum officia. maximum_funding_per_project: 100000 - closing_at: '2023-08-26T08:14:28.957Z' + closing_at: '2024-09-22T14:48:06.516Z' status: launched language: en account_language: es verified: false - created_at: '2022-10-26T08:14:28.962Z' - updated_at: '2022-10-26T08:14:28.977Z' + created_at: '2023-11-22T14:48:06.518Z' + updated_at: '2023-11-22T14:48:06.524Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -1403,21 +1418,21 @@ paths: relationships: investor: data: - id: e4a41eec-98e6-4deb-bdd5-7978638a5fb7 + id: 241c6db0-eb6c-4764-beb2-cd4e4fc82872 type: investor country: data: - id: 8c86d5aa-d349-4b14-8bfd-300f94c67eac + id: 693b3326-e937-426a-91ef-5155c6ccf87c type: location municipality: data: - id: d84da1ed-dc7b-4dcf-9753-e7fb06331a2b + id: efc2ea7d-e795-4c0f-b05a-b0e4e3221708 type: location department: data: - id: 3f57ce89-5dda-468c-a1cc-c9f6e82a0d1e + id: c5c3d035-5b09-406d-b026-e9c18536ed28 type: location - - id: 0fc6219e-939c-47ff-bf92-55f320333f7f + - id: 0aeb75f5-38a9-4b9d-8a00-de516591fccd type: open_call attributes: name: Open call 4 @@ -1437,15 +1452,14 @@ paths: impact_description: Autem et et. Voluptatem neque quibusdam. Repellat recusandae eum. Eius ex est. maximum_funding_per_project: 100000 - closing_at: '2023-08-26T08:14:28.903Z' + closing_at: '2024-09-22T14:48:06.496Z' status: launched language: en account_language: es verified: false - created_at: '2022-10-26T08:14:28.907Z' - updated_at: '2022-10-26T08:14:28.919Z' + created_at: '2023-11-22T14:48:06.498Z' + updated_at: '2023-11-22T14:48:06.504Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -1455,21 +1469,21 @@ paths: relationships: investor: data: - id: e4a41eec-98e6-4deb-bdd5-7978638a5fb7 + id: 241c6db0-eb6c-4764-beb2-cd4e4fc82872 type: investor country: data: - id: e436af37-e7aa-4794-abd9-c8fc5828f12a + id: 5ac78a5c-1d32-4bbc-88d6-8f27e3819836 type: location municipality: data: - id: 6836a023-0fc8-409f-8efe-4a3466c333ff + id: 868ca61f-c570-4f91-a5be-40377a6aaf08 type: location department: data: - id: 2d4928a1-bc59-4c41-a175-1ee279a8189a + id: c660fbea-428f-4da7-922c-bd17ed54262f type: location - - id: ed3917e2-1812-4714-afa3-9f53e105faae + - id: 93831121-7894-43c0-8414-e3723f12a811 type: open_call attributes: name: Open call 3 @@ -1489,15 +1503,14 @@ paths: impact_description: Dolores fugiat nesciunt. Ut laborum dolores. Sit neque eos. Expedita molestiae quia. maximum_funding_per_project: 100000 - closing_at: '2023-08-26T08:14:28.844Z' + closing_at: '2024-09-22T14:48:06.476Z' status: launched language: en account_language: es verified: false - created_at: '2022-10-26T08:14:28.849Z' - updated_at: '2022-10-26T08:14:28.864Z' + created_at: '2023-11-22T14:48:06.478Z' + updated_at: '2023-11-22T14:48:06.484Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -1507,21 +1520,21 @@ paths: relationships: investor: data: - id: e4a41eec-98e6-4deb-bdd5-7978638a5fb7 + id: 241c6db0-eb6c-4764-beb2-cd4e4fc82872 type: investor country: data: - id: b45d2b05-250b-40ea-85ed-c4c24f5d5cc1 + id: 4f08b74f-d164-4ee0-ade8-72a6490494ae type: location municipality: data: - id: 68ea04c2-d633-4e30-a61b-5c47d8e58ff1 + id: 0da12f91-3d04-4d8d-b676-b995a83418ba type: location department: data: - id: 6132558c-6db0-4143-908d-af51844f7d30 + id: 6f992602-6939-4e71-ac0b-94d9a49b3b21 type: location - - id: d74c9c17-9ccd-4fe0-83da-83658721ccb0 + - id: 79fe3040-83ba-41dd-a4f5-ded0ff4ac56e type: open_call attributes: name: Open call 2 @@ -1541,15 +1554,14 @@ paths: impact_description: Et quaerat omnis. Harum voluptas atque. Quo nesciunt voluptas. Suscipit ex cum. maximum_funding_per_project: 100000 - closing_at: '2023-08-26T08:14:28.789Z' + closing_at: '2024-09-22T14:48:06.452Z' status: launched language: en account_language: es verified: false - created_at: '2022-10-26T08:14:28.794Z' - updated_at: '2022-10-26T08:14:28.805Z' + created_at: '2023-11-22T14:48:06.454Z' + updated_at: '2023-11-22T14:48:06.460Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -1559,21 +1571,21 @@ paths: relationships: investor: data: - id: e4a41eec-98e6-4deb-bdd5-7978638a5fb7 + id: 241c6db0-eb6c-4764-beb2-cd4e4fc82872 type: investor country: data: - id: 01f4fd4a-86c0-4bee-9568-70abd14316ed + id: 9072e677-9017-4088-8c00-c6d90e7a6b18 type: location municipality: data: - id: f0a792df-9e3c-4a3f-9152-5f0cb58e1df6 + id: 1690d338-4926-47e6-8c71-ec2117a2467c type: location department: data: - id: bbe5bd88-ec41-467d-8973-ab39120ec1a0 + id: 19caa0da-51de-4d76-8a94-6db45bcaaec4 type: location - - id: 6cb28149-6d72-4e82-8256-7c26844648f1 + - id: f341a066-d38a-4dff-af2d-5c666eaeaa6b type: open_call attributes: name: Yellow Banana @@ -1593,15 +1605,14 @@ paths: impact_description: Placeat commodi libero. Quo recusandae repellat. Sunt commodi tempore. Voluptatem et corrupti. maximum_funding_per_project: 100000 - closing_at: '2023-08-26T08:14:28.730Z' + closing_at: '2024-09-22T14:48:06.433Z' status: launched language: en account_language: es verified: false - created_at: '2022-10-26T08:14:28.738Z' - updated_at: '2022-10-26T08:14:28.753Z' + created_at: '2023-11-22T14:48:06.435Z' + updated_at: '2023-11-22T14:48:06.440Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -1611,21 +1622,21 @@ paths: relationships: investor: data: - id: e4a41eec-98e6-4deb-bdd5-7978638a5fb7 + id: 241c6db0-eb6c-4764-beb2-cd4e4fc82872 type: investor country: data: - id: cc90d23a-40db-4233-8edb-023c8ab576ca + id: 29df4bd6-a2d9-4620-921f-7d6ae3150995 type: location municipality: data: - id: c4810fa1-3a5b-464a-8cee-65295a48efa8 + id: dc372cd9-067a-4fb4-b6b9-ce633f3f4e4a type: location department: data: - id: 27014eb0-cc03-49ae-96e0-f1d6fa5558ec + id: f4d0e701-a08d-422b-a3dc-af11b095d8b0 type: location - - id: c3e139b0-7d6d-45cb-9002-99edbba0b167 + - id: 1a74bead-5ecf-49a8-acb5-3fa68132d6ea type: open_call attributes: name: Open call 1 @@ -1645,15 +1656,14 @@ paths: impact_description: Enim repellat pariatur. Earum modi eos. Libero tempora exercitationem. Qui dolorem quo. maximum_funding_per_project: 100000 - closing_at: '2023-08-26T08:14:28.671Z' + closing_at: '2024-09-22T14:48:06.414Z' status: draft language: en account_language: es verified: false - created_at: '2022-10-26T08:14:28.675Z' - updated_at: '2022-10-26T08:14:28.691Z' + created_at: '2023-11-22T14:48:06.416Z' + updated_at: '2023-11-22T14:48:06.422Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -1663,19 +1673,19 @@ paths: relationships: investor: data: - id: e4a41eec-98e6-4deb-bdd5-7978638a5fb7 + id: 241c6db0-eb6c-4764-beb2-cd4e4fc82872 type: investor country: data: - id: 544e6660-7331-46d1-ba90-3d4ce204b2b8 + id: 0ca41717-4b95-4c5a-a7a1-4b2e555305da type: location municipality: data: - id: df962749-620d-4758-b5c7-1369d7b075b6 + id: 6377b2f5-83c7-49ca-8a36-ef7015276625 type: location department: data: - id: a9e8ded7-ba0b-45f8-8a69-3bb300837a35 + id: d13f8761-05bb-4da4-97e1-6228570e77c3 type: location schema: type: object @@ -1716,7 +1726,7 @@ paths: application/json: example: data: - id: 4e8085ae-0585-45ca-b360-a4b515fee2a1 + id: 696af8b5-05e1-4f64-93da-5e8779fa8d01 type: open_call attributes: name: Open Call Name @@ -1732,15 +1742,14 @@ paths: funding_exclusions: Open Call Funding Exclusions impact_description: Open Call Impact Description maximum_funding_per_project: 100000 - closing_at: '2022-10-27T08:14:38.726Z' + closing_at: '2023-11-23T14:48:08.896Z' status: draft language: es account_language: es verified: false - created_at: '2022-10-26T08:14:38.760Z' - updated_at: '2022-10-26T08:14:38.856Z' + created_at: '2023-11-22T14:48:08.908Z' + updated_at: '2023-11-22T14:48:08.913Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -1750,19 +1759,19 @@ paths: relationships: investor: data: - id: abcff04c-f59f-4e8d-aefc-6c36f614fa9a + id: 0bd36e85-bb89-46b5-aed5-abd0ad92bba3 type: investor country: data: - id: 7b88e8dc-3cc2-4d59-9eab-dd88c9e8bcef + id: 1ac023b7-165b-446f-9d65-23512c38117e type: location municipality: data: - id: 8918c110-f7a4-4c8a-8222-9de05b308d26 + id: 131d0841-445b-4840-9c00-c286a679aab0 type: location department: data: - id: 7a6bfa92-8233-4571-a42e-9dd1730087d9 + id: ded2d748-b996-481a-9e85-d0d844d98fcd type: location schema: type: object @@ -1903,7 +1912,7 @@ paths: application/json: example: data: - id: 6eb15511-b4f2-4dd2-9990-855fd476503e + id: 03f70874-7bd8-4f1a-8664-7ecacda3183c type: open_call attributes: name: Updated Open Call Name @@ -1918,15 +1927,14 @@ paths: funding_exclusions: Updated Open Call Funding Exclusions impact_description: Updated Open Call Impact Description maximum_funding_per_project: 100000 - closing_at: '2022-11-05T08:14:42.254Z' + closing_at: '2023-12-02T14:48:09.916Z' status: launched language: en account_language: es verified: false - created_at: '2022-10-26T08:14:42.185Z' - updated_at: '2022-10-26T08:14:42.323Z' + created_at: '2023-11-22T14:48:09.893Z' + updated_at: '2023-11-22T14:48:09.932Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -1936,19 +1944,19 @@ paths: relationships: investor: data: - id: a076fa21-3607-4d13-9b57-f19a636db7b4 + id: 2e8c3f51-c9b6-488f-a429-703f7e5afd45 type: investor country: data: - id: c72d7e96-55b7-4d2d-9118-531e95a646a3 + id: 305c7a81-7a2b-4dc1-a31a-1d830a46c2fa type: location municipality: data: - id: 718af7f2-5f60-4b4e-ac0b-3c856b3f5022 + id: 807cd82c-d994-482a-b261-9a35e239f4a1 type: location department: data: - id: 93485fb9-189b-4ad4-888a-9105d4bda13e + id: 8901203b-3d26-49e6-bd5f-216ae754515b type: location schema: type: object @@ -2133,7 +2141,7 @@ paths: application/json: example: data: - - id: c18e82e5-cf21-4719-938d-28659e17f886 + - id: e4feb197-7f74-460a-8f3b-8f1e7dc6e9f8 type: open_call attributes: name: Open call 1 @@ -2153,15 +2161,14 @@ paths: impact_description: Enim repellat pariatur. Earum modi eos. Libero tempora exercitationem. Qui dolorem quo. maximum_funding_per_project: 100000 - closing_at: '2023-08-26T08:14:50.413Z' + closing_at: '2024-09-22T14:48:11.901Z' status: launched language: en account_language: en verified: false - created_at: '2022-10-26T08:14:50.417Z' - updated_at: '2022-10-26T08:14:50.427Z' + created_at: '2023-11-22T14:48:11.903Z' + updated_at: '2023-11-22T14:48:11.908Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -2171,19 +2178,19 @@ paths: relationships: investor: data: - id: 973b8bf0-2b7b-457b-851c-0c4803e5a91b + id: d55ce0fc-f7f1-4cce-99a6-068ed6e5cfd2 type: investor country: data: - id: 2233f565-664b-495b-ad85-f9db3b24382f + id: d513a3e4-8050-4e93-9288-c8b05ba0f368 type: location municipality: data: - id: 69abd8be-8205-46c6-a394-a8471b0046a3 + id: c5e0fdc6-947d-4261-8df6-3ee4a6c5b769 type: location department: data: - id: fcd5a9e1-76d4-42e3-86ce-efe0377c0d0e + id: 0aec29d2-cd65-42a2-bdad-41e08c65eb1f type: location meta: page: 1 @@ -2243,7 +2250,7 @@ paths: application/json: example: data: - id: 6ff0b323-46ef-4d30-b8b5-c21479023f1f + id: 89d8426e-2aec-4bea-b8a7-6c7c436feea4 type: project_developer attributes: name: Kutch-Spencer @@ -2268,7 +2275,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2022-10-26T08:14:54.124Z' + created_at: '2023-11-22T14:48:13.460Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -2280,23 +2287,23 @@ paths: relationships: owner: data: - id: 46301dd4-a08b-4b7e-bb1c-378e5f9384ec + id: 533c74e9-fb2f-4305-b2ad-a309fbc6166a type: user projects: data: - - id: d732c557-3e0f-4984-a5cd-1c81f8f5e4bd + - id: 24386a45-a47c-4578-9756-988bbd2b3f36 type: project involved_projects: data: - - id: f0413d80-33a2-4327-b5f5-ee9f9c3dd7b1 + - id: b074a253-3c85-44d8-8539-ba3d88bea961 type: project - - id: 782a2a79-455a-45a5-bf4a-b3cc507588b5 + - id: fffb54c0-62b1-44ab-86bd-ea825bb9b8b4 type: project priority_landscapes: data: - - id: 0553fbfa-de5a-400e-ba2e-87902fb8f49c + - id: 3d8c899b-a84e-4c03-9d50-5b28b9de1bf2 type: location - - id: ec14a633-6f6f-42c6-af13-8a5e561722bb + - id: 7bf48b68-d09e-40f4-8e1e-cd16cd08599f type: location schema: type: object @@ -2326,7 +2333,7 @@ paths: application/json: example: data: - id: 6e632424-7234-4233-bdf9-d96ab740af79 + id: c7a4421e-d7c1-40d1-953f-3254ef358543 type: project_developer attributes: name: Name @@ -2349,7 +2356,7 @@ paths: account_language: es entity_legal_registration_number: '564823570' review_status: unapproved - created_at: '2022-10-26T08:14:55.390Z' + created_at: '2023-11-22T14:48:13.915Z' contact_email: contact_phone: picture: @@ -2361,7 +2368,7 @@ paths: relationships: owner: data: - id: 2c052f5b-7e5a-4000-be38-e4269737942f + id: f95b0f67-9ab0-4d29-bf4f-39437b9fa6b9 type: user projects: data: [] @@ -2369,7 +2376,7 @@ paths: data: [] priority_landscapes: data: - - id: 8e9231fa-0c4d-4dca-b4a9-66ab601d155f + - id: a19ee830-d9e0-4566-ba3b-0f4b9064463f type: location schema: type: object @@ -2495,7 +2502,7 @@ paths: application/json: example: data: - id: 9a1db754-4edf-4fcf-9e91-8d09d7109be5 + id: dbb11986-af11-4e04-bc54-ff596a7d09f1 type: project_developer attributes: name: Name @@ -2518,7 +2525,7 @@ paths: account_language: es entity_legal_registration_number: '564823570' review_status: approved - created_at: '2022-10-26T08:14:56.056Z' + created_at: '2023-11-22T14:48:14.221Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -2530,7 +2537,7 @@ paths: relationships: owner: data: - id: 724cf793-3de9-49eb-bffd-7a5269dc6f19 + id: 59c623de-9666-410f-a329-2971e2edd5c9 type: user projects: data: [] @@ -2538,7 +2545,7 @@ paths: data: [] priority_landscapes: data: - - id: c8614376-439a-4eeb-99d1-1b1ce7604ff1 + - id: c701da02-f66b-4328-8831-ffe3aae9cb84 type: location schema: type: object @@ -2669,7 +2676,7 @@ paths: application/json: example: data: - - id: 594e36e2-480a-4a90-96ef-ba10685fb7f3 + - id: d19ad41d-1a0c-4536-9178-8584f105e1ed type: project_developer attributes: name: Bartoletti and Sons @@ -2694,7 +2701,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2022-10-26T08:14:58.309Z' + created_at: '2023-11-22T14:48:14.675Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -2706,7 +2713,7 @@ paths: relationships: owner: data: - id: 4fec684b-3a36-4bb4-8744-c715e323b52b + id: 7611ec76-9e0b-404f-8453-adbbae7cae9f type: user projects: data: [] @@ -2714,9 +2721,9 @@ paths: data: [] priority_landscapes: data: - - id: 5767844e-909e-47a9-8098-b0669286399e + - id: 181e6b8e-1b50-4cfb-bcd1-b2b2b663c49d type: location - - id: ca1275ef-000f-4e6f-bdf4-f1e5af59a713 + - id: df0d0c8b-e579-480e-b3a8-42bfe82efc96 type: location meta: page: 1 @@ -2791,7 +2798,7 @@ paths: application/json: example: data: - - id: 976433ba-9a91-47a0-b599-041d1aef15bf + - id: 7d957f70-d90a-43f7-a55a-3ba0e7e1c0ed type: project attributes: name: Draft project @@ -2839,13 +2846,30 @@ paths: language: en account_language: es geometry: - type: Point + type: Polygon coordinates: - - 1.0 - - 2.0 + - - - -7.256596802202454 + - 39.42149705239956 + - - -5.510236906689473 + - 40.02677860935444 + - - -4.408874148363334 + - 39.419930008870296 + - - -5.205992932301829 + - 38.67169482742881 + - - -6.402685625872827 + - 38.39721372248553 + - - -7.059852379049463 + - 38.94985978831832 + - - -7.256596802202454 + - 39.42149705239956 verified: false - created_at: '2022-10-26T08:15:00.829Z' - updated_at: '2022-10-26T08:15:00.829Z' + created_at: '2023-11-22T14:48:15.460Z' + updated_at: '2023-11-22T14:48:15.460Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: municipality_biodiversity_impact: municipality_climate_impact: municipality_water_impact: @@ -2862,27 +2886,26 @@ paths: priority_landscape_community_impact: priority_landscape_total_impact: impact_calculated: false - trusted: false - latitude: 2.0 - longitude: 1.0 + latitude: 39.21309022641362 + longitude: -5.87810037515931 favourite: false funded: relationships: project_developer: data: - id: 8512e5dc-f88f-4386-8426-69670bb73b8a + id: ad0c02bb-7baa-4045-bae2-a978a3a2e8fb type: project_developer country: data: - id: f3d2a110-883a-4113-a3f9-9e1402c825ed + id: 3c4cdb98-0279-40e0-8291-0fc67830f164 type: location municipality: data: - id: 60bd94b2-9a3b-47e6-b549-957fb8ed712d + id: e7e3019e-e726-4fc4-ac19-bcf6d701d125 type: location department: data: - id: dd172512-d0a4-441c-8fe3-806d596cc087 + id: '02521920-abb2-44c9-b956-48f8eface8d7' type: location priority_landscape: data: @@ -2890,7 +2913,7 @@ paths: data: [] project_images: data: [] - - id: e69b563d-289d-4f65-92d3-eb15dd872415 + - id: c1f7b9b3-2d5a-46c0-b563-55725e21b2c8 type: project attributes: name: This PDs Project Amazing @@ -2938,13 +2961,30 @@ paths: language: en account_language: es geometry: - type: Point + type: Polygon coordinates: - - 1.0 - - 2.0 + - - - -7.256596802202454 + - 39.42149705239956 + - - -5.510236906689473 + - 40.02677860935444 + - - -4.408874148363334 + - 39.419930008870296 + - - -5.205992932301829 + - 38.67169482742881 + - - -6.402685625872827 + - 38.39721372248553 + - - -7.059852379049463 + - 38.94985978831832 + - - -7.256596802202454 + - 39.42149705239956 verified: false - created_at: '2022-10-26T08:15:00.663Z' - updated_at: '2022-10-26T08:15:00.663Z' + created_at: '2023-11-22T14:48:15.383Z' + updated_at: '2023-11-22T14:48:15.383Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: municipality_biodiversity_impact: municipality_climate_impact: municipality_water_impact: @@ -2961,27 +3001,26 @@ paths: priority_landscape_community_impact: priority_landscape_total_impact: impact_calculated: false - trusted: false - latitude: 2.0 - longitude: 1.0 + latitude: 39.21309022641362 + longitude: -5.87810037515931 favourite: false funded: relationships: project_developer: data: - id: 8512e5dc-f88f-4386-8426-69670bb73b8a + id: ad0c02bb-7baa-4045-bae2-a978a3a2e8fb type: project_developer country: data: - id: 769d07ab-6dd0-4763-ae07-b39d6fdca326 + id: 81251e63-5b68-45ef-9002-bdb416a3b4ad type: location municipality: data: - id: b9cf8c85-d531-4afc-a749-8b7e2dd707a4 + id: aa01ddac-e095-4344-9169-3df1f65a9403 type: location department: data: - id: 538bec24-0433-432c-ab07-8f6d75eefd1b + id: 282a90ea-51ab-4d4b-85a0-05e4a9b37b83 type: location priority_landscape: data: @@ -2989,7 +3028,7 @@ paths: data: [] project_images: data: [] - - id: f55ce354-1fdf-4312-bbc0-294be052a082 + - id: b4945069-bcba-45f2-a707-45a945dc32b8 type: project attributes: name: This PDs Project Awesome @@ -3037,13 +3076,30 @@ paths: language: en account_language: es geometry: - type: Point + type: Polygon coordinates: - - 1.0 - - 2.0 + - - - -7.256596802202454 + - 39.42149705239956 + - - -5.510236906689473 + - 40.02677860935444 + - - -4.408874148363334 + - 39.419930008870296 + - - -5.205992932301829 + - 38.67169482742881 + - - -6.402685625872827 + - 38.39721372248553 + - - -7.059852379049463 + - 38.94985978831832 + - - -7.256596802202454 + - 39.42149705239956 verified: false - created_at: '2022-10-26T08:15:00.623Z' - updated_at: '2022-10-26T08:15:00.623Z' + created_at: '2023-11-22T14:48:15.357Z' + updated_at: '2023-11-22T14:48:15.357Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: municipality_biodiversity_impact: municipality_climate_impact: municipality_water_impact: @@ -3060,27 +3116,26 @@ paths: priority_landscape_community_impact: priority_landscape_total_impact: impact_calculated: false - trusted: false - latitude: 2.0 - longitude: 1.0 + latitude: 39.21309022641362 + longitude: -5.87810037515931 favourite: false funded: relationships: project_developer: data: - id: 8512e5dc-f88f-4386-8426-69670bb73b8a + id: ad0c02bb-7baa-4045-bae2-a978a3a2e8fb type: project_developer country: data: - id: fad0b9a8-187a-4ce5-81b8-50288a032a05 + id: 7aaf0419-26a5-4d93-8a2f-6b9ac6ccc84e type: location municipality: data: - id: 6d4e0d8d-7da3-4bc4-a92a-fe00e7012b14 + id: 97b8369b-9f2a-4baf-aac2-4d28c77c31de type: location department: data: - id: dc3494bb-ebba-4a21-b0be-723d162751b3 + id: 6291f1a1-7e4a-4232-9457-68ab2796cf89 type: location priority_landscape: data: @@ -3127,7 +3182,7 @@ paths: application/json: example: data: - id: c1a5b2c7-5b33-48df-b950-febb5bd4a88b + id: 27679c0d-db64-4d25-a359-23eb340fc6fd type: project attributes: name: Project Name @@ -3184,8 +3239,13 @@ paths: - 1.5274297752414188 properties: {} verified: false - created_at: '2022-10-26T08:15:04.899Z' - updated_at: '2022-10-26T08:15:04.899Z' + created_at: '2023-11-22T14:48:17.013Z' + updated_at: '2023-11-22T14:48:17.013Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: municipality_biodiversity_impact: municipality_climate_impact: municipality_water_impact: @@ -3202,7 +3262,6 @@ paths: priority_landscape_community_impact: priority_landscape_total_impact: impact_calculated: false - trusted: false latitude: 1.1581373021971106 longitude: -77.16867902747148 favourite: false @@ -3210,50 +3269,50 @@ paths: relationships: project_developer: data: - id: ecb45cc0-f2f6-48d9-9ac3-f817474f904e + id: b718b494-3b00-4023-a4f4-d3868798b91c type: project_developer country: data: - id: 275af870-a6b3-4135-a910-3feec3c7853a + id: 9405ad31-d2e4-4c36-9255-e13cb1a3267f type: location municipality: data: - id: c8ed62f6-f574-4083-aeef-7e14c9647242 + id: 52db25c8-0ed3-430f-9add-c5bb271d2e4b type: location department: data: - id: c4adb8a4-7334-4d92-98c1-ba47c49601c3 + id: 1bcd29cf-7698-440e-b407-0859881491ab type: location priority_landscape: data: involved_project_developers: data: - - id: 54a3ad57-5706-4a68-939b-85d2829337bf + - id: 81ef409a-a32a-4a88-8a57-5cefd10e8507 type: project_developer - - id: 533535c4-9bae-49f8-bea9-deb5a69eb39a + - id: 1bfa869b-b011-4701-8665-88ae9508d314 type: project_developer project_images: data: - - id: 0bde1632-6ba9-4d21-8deb-d100c0c086fe + - id: 65b6798f-933f-461d-ae09-382a429870c0 type: project_image - - id: beab4a35-d4d9-45dd-8e61-954cd9c1321e + - id: 84f2ea4a-7fc4-4e27-acc8-58f03e9eca2e type: project_image included: - - id: 0bde1632-6ba9-4d21-8deb-d100c0c086fe + - id: 65b6798f-933f-461d-ae09-382a429870c0 type: project_image attributes: cover: true - created_at: '2022-10-26T08:15:04.906Z' + created_at: '2023-11-22T14:48:17.017Z' file: analyzed: false small: medium: original: - - id: beab4a35-d4d9-45dd-8e61-954cd9c1321e + - id: 84f2ea4a-7fc4-4e27-acc8-58f03e9eca2e type: project_image attributes: cover: false - created_at: '2022-10-26T08:15:04.914Z' + created_at: '2023-11-22T14:48:17.021Z' file: analyzed: false small: @@ -3500,7 +3559,7 @@ paths: application/json: example: data: - id: 4f78cb95-92d3-4472-9ca8-adb2789d0622 + id: d8d94fdd-38e8-4b6f-8b54-41fca9397924 type: project attributes: name: Updated Project Name @@ -3541,11 +3600,16 @@ paths: geometry: type: Point coordinates: - - 1 - - 2 + - 1.0 + - 2.0 verified: false - created_at: '2022-10-26T08:15:12.444Z' - updated_at: '2022-10-26T08:15:13.328Z' + created_at: '2023-11-22T14:48:19.751Z' + updated_at: '2023-11-22T14:48:19.899Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: municipality_biodiversity_impact: municipality_climate_impact: municipality_water_impact: @@ -3562,7 +3626,6 @@ paths: priority_landscape_community_impact: priority_landscape_total_impact: impact_calculated: false - trusted: false latitude: 2.0 longitude: 1.0 favourite: false @@ -3570,31 +3633,31 @@ paths: relationships: project_developer: data: - id: 63225b43-786f-4d62-beb8-d56a2d506d4c + id: 2eb9508a-5240-46c7-a664-193890c93ea8 type: project_developer country: data: - id: e9900538-7aea-4177-8c46-ec1914bc03c5 + id: a9f59756-ca62-41fa-8999-0cea2e97766b type: location municipality: data: - id: 800ee0ae-7d0a-44e4-a7e1-9d43e9e31dea + id: a9b4d2bb-d7d8-405c-aad2-20bdeb81290b type: location department: data: - id: 2d3644d2-7b00-450d-befb-f386f6b6291d + id: b1545415-9a6a-4ce9-bd1e-0ee8847be0e5 type: location priority_landscape: data: involved_project_developers: data: - - id: ff254158-3833-4b55-9cd3-468310845b70 + - id: bfbb3e01-d5bf-4928-98f1-6772c5b72704 type: project_developer - - id: 1b40b2e2-c8b4-4d99-8ad7-3646dd167a32 + - id: 9248434b-955d-4ef1-93d8-615bd7ffe6a2 type: project_developer project_images: data: - - id: b9b4f0a6-b6c5-4242-b68d-2ed7d7e818ba + - id: 4ac5d174-bb3c-4c04-a959-3a0e1f7ad8da type: project_image schema: type: object @@ -3891,7 +3954,7 @@ paths: application/json: example: data: - - id: 6bb24a74-b3e4-43a9-b10a-a29d2a867c1f + - id: 29bc9117-4a87-487e-aff2-520867d08967 type: project attributes: name: Project 1 @@ -3939,13 +4002,30 @@ paths: language: en account_language: en geometry: - type: Point + type: Polygon coordinates: - - 1.0 - - 2.0 + - - - -7.256596802202454 + - 39.42149705239956 + - - -5.510236906689473 + - 40.02677860935444 + - - -4.408874148363334 + - 39.419930008870296 + - - -5.205992932301829 + - 38.67169482742881 + - - -6.402685625872827 + - 38.39721372248553 + - - -7.059852379049463 + - 38.94985978831832 + - - -7.256596802202454 + - 39.42149705239956 verified: false - created_at: '2022-10-26T08:15:31.312Z' - updated_at: '2022-10-26T08:15:31.312Z' + created_at: '2023-11-22T14:48:25.877Z' + updated_at: '2023-11-22T14:48:25.877Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: municipality_biodiversity_impact: municipality_climate_impact: municipality_water_impact: @@ -3962,27 +4042,26 @@ paths: priority_landscape_community_impact: priority_landscape_total_impact: impact_calculated: false - trusted: false - latitude: 2.0 - longitude: 1.0 + latitude: 39.21309022641362 + longitude: -5.87810037515931 favourite: true funded: relationships: project_developer: data: - id: f40ef998-e2c6-4a25-9b34-9183e8dc7352 + id: 8c4858a1-6ae9-44b7-af67-f5364c66cda3 type: project_developer country: data: - id: faec6159-9eb0-488d-8d10-449f1177407c + id: c00322d5-b62e-45d0-b245-75e5bb7f917e type: location municipality: data: - id: 94798a0e-9e47-478f-ac94-4c018f9243df + id: c07b106d-9215-4338-9f99-97e848072a02 type: location department: data: - id: 62cf77ff-6ca3-42b0-8284-d2eddd5ffb19 + id: 16515023-5ece-4344-9f30-10fb338a9c09 type: location priority_landscape: data: @@ -4140,14 +4219,14 @@ paths: application/json: example: data: - - id: b28f09b0-42d7-4b0a-8593-8d6278627146 + - id: 28f94c82-50a4-479d-851f-1dba64981db1 type: user attributes: first_name: Dawna last_name: Block email: dawna.block@example.org role: light - created_at: '2022-10-26T08:15:37.010Z' + created_at: '2023-11-22T14:48:27.908Z' ui_language: en account_language: en otp_required_for_login: false @@ -4160,14 +4239,14 @@ paths: small: medium: original: - - id: 694cdf63-ec02-4a1b-9994-4dafac345920 + - id: 04e01f5d-4e9a-4096-a200-7f7a69a9cd96 type: user attributes: first_name: Desmond last_name: Herzog email: desmond_herzog@example.org role: light - created_at: '2022-10-26T08:15:37.068Z' + created_at: '2023-11-22T14:48:27.922Z' ui_language: en account_language: en otp_required_for_login: false @@ -4180,14 +4259,14 @@ paths: small: medium: original: - - id: 3ebca23f-33c0-4b85-90db-cc63e1fa1d78 + - id: 8dc5134a-2156-4647-b944-ce5acdd6dd75 type: user attributes: first_name: Raymon last_name: Runte email: runte_raymon@example.org role: light - created_at: '2022-10-26T08:15:37.080Z' + created_at: '2023-11-22T14:48:27.926Z' ui_language: en account_language: otp_required_for_login: false @@ -4282,14 +4361,14 @@ paths: application/json: example: data: - id: a966a93f-1af6-41f8-b8af-132c885e8259 + id: 30870028-953f-42c4-bb89-facca94a4e5c type: user attributes: first_name: Desmond last_name: Herzog email: desmond_herzog@example.org role: light - created_at: '2022-10-26T08:15:39.743Z' + created_at: '2023-11-22T14:48:28.779Z' ui_language: en account_language: en otp_required_for_login: false @@ -4313,7 +4392,7 @@ paths: application/json: example: errors: - - title: Couldn't find User with 'id'=51166fd4-fc94-4afb-b239-5f447c562a7b + - title: Couldn't find User with 'id'=1d054564-af6e-4b38-aa4c-3077f108de3a [WHERE "users"."account_id" = $1] schema: "$ref": "#/components/schemas/errors" @@ -4439,7 +4518,7 @@ paths: application/json: example: data: - - id: 594ded62-d6f1-474b-b897-0543f1bace15 + - id: 49f3d20d-cc8b-4670-b972-ed2b59512d58 type: background_job_event attributes: status: enqueued @@ -4449,9 +4528,9 @@ paths: priority: executions: 1 message: - created_at: '2022-10-16T08:15:45.923Z' - updated_at: '2022-10-26T08:15:45.926Z' - - id: cf21cf12-3659-4fbd-9847-c4ed39d13eee + created_at: '2023-11-12T14:48:30.479Z' + updated_at: '2023-11-22T14:48:30.479Z' + - id: 638d020a-d765-45ae-a80c-023f4dd5c5bf type: background_job_event attributes: status: crashed @@ -4461,8 +4540,8 @@ paths: priority: executions: 1 message: - created_at: '2022-10-26T08:15:45.885Z' - updated_at: '2022-10-26T08:15:45.885Z' + created_at: '2023-11-22T14:48:30.478Z' + updated_at: '2023-11-22T14:48:30.478Z' meta: page: 1 per_page: 10 @@ -4523,14 +4602,14 @@ paths: application/json: example: data: - id: 45259544-15f0-4b44-a1d7-83343864c17d + id: 56024d9c-0188-4464-97ae-78307068de09 type: user attributes: first_name: Dawna last_name: Block email: user@example.com role: light - created_at: '2022-10-26T08:15:48.091Z' + created_at: '2023-11-22T14:48:30.608Z' ui_language: en account_language: otp_required_for_login: false @@ -4591,7 +4670,7 @@ paths: - id: non-timber-forest-production type: category attributes: - name: Non Timber Forest Production + name: Non-Timber Forest Production color: "#404B9A" description: Production of health, wellness, and cosmetic products; art, clothing, and handcrafted products; production of food @@ -4599,7 +4678,7 @@ paths: - id: human-capital-and-inclusion type: category attributes: - name: Human capital and inclusion + name: Human Capital and Inclusion color: "#A0616A" description: Adequate access to quality education, appropriate health services, and formal employment opportunities that respond @@ -4674,7 +4753,7 @@ paths: - id: hydrometerological-risk-reduction type: impact_area attributes: - name: Hydrometerological risk reduction + name: Hydrometereological risk reduction impact: water - id: sustainable-food type: impact_area @@ -4757,7 +4836,7 @@ paths: - id: non-VC-investment-vehicle type: investor_type attributes: - name: Non VC Investment Vehicle + name: Non-VC Investment Vehicle - id: venture-capital-private-equity type: investor_type attributes: @@ -4829,7 +4908,7 @@ paths: - id: business-start-up-entrepreneur type: project_developer_type attributes: - name: Business - Start-up entrepreneur + name: Business - Startup entrepreneur - id: business-trade-or-business-association type: project_developer_type attributes: @@ -4853,7 +4932,7 @@ paths: - id: iplc-organization type: project_developer_type attributes: - name: IPLC organization + name: Indigenous Peoples and Local Communities organization - id: incipient type: project_development_stage attributes: @@ -4862,7 +4941,7 @@ paths: - id: consolidaton type: project_development_stage attributes: - name: Consolidaton + name: Consolidation description: project or solution already in implementation that seeks to be strengthened and consolidated - id: scaling-up @@ -4882,7 +4961,7 @@ paths: - id: entrepreneurs-and-innovators-startups type: project_target_group attributes: - name: Enterpreneurs and innovators - startups + name: Entrepreneurs and innovators - startups - id: small-and-medium-businesses type: project_target_group attributes: @@ -4894,11 +4973,11 @@ paths: - id: indigenous-peoples type: project_target_group attributes: - name: Indigenous peoples + name: Indigenous people - id: afro-desendant-peoples type: project_target_group attributes: - name: Afro-desendant peoples + name: Afro-descendant people - id: peasants-and-traditional-inhabitants type: project_target_group attributes: @@ -5465,7 +5544,7 @@ paths: application/json: example: data: - - id: 51a3976d-919d-48ec-8c1d-58c990485677 + - id: 6e54aa72-fcb8-4ba2-9596-f840f6a69518 type: investor attributes: name: Bartoletti and Sons @@ -5503,7 +5582,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2022-10-26T08:15:58.447Z' + created_at: '2023-11-22T14:48:33.590Z' contact_email: contact_phone: picture: @@ -5515,11 +5594,11 @@ paths: relationships: owner: data: - id: 31ffe67c-684f-484f-a9c3-a78c04a37159 + id: b839c541-00e5-4fc9-bfa9-2762f427401a type: user open_calls: data: [] - - id: 024ab604-8a53-4929-b035-46ee3ae6ad55 + - id: 9c372064-6c2e-4200-a4e7-535aab121935 type: investor attributes: name: Becker LLC @@ -5557,7 +5636,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2022-10-26T08:15:58.785Z' + created_at: '2023-11-22T14:48:33.726Z' contact_email: contact_phone: picture: @@ -5569,11 +5648,11 @@ paths: relationships: owner: data: - id: d58f744c-9a3b-47de-88b9-01d1f6e0169a + id: b76c8483-77d0-469a-b8b5-da9371be0e82 type: user open_calls: data: [] - - id: 26ea0289-5863-439c-aa87-1e918879338e + - id: ef7ae989-b6d2-4545-b73d-91b8097ae70c type: investor attributes: name: Gleichner-Bartoletti @@ -5610,7 +5689,7 @@ paths: language: pt account_language: pt review_status: approved - created_at: '2022-10-26T08:15:59.020Z' + created_at: '2023-11-22T14:48:33.803Z' contact_email: contact_phone: picture: @@ -5622,11 +5701,11 @@ paths: relationships: owner: data: - id: ecab0020-2ec3-423b-ae1e-9e643d492519 + id: 99f7ad87-9818-4725-911d-0c9e4085ace6 type: user open_calls: data: [] - - id: 667f632a-d5ea-40d4-ba2b-bb3af3588092 + - id: 90696f22-e252-45ef-a7dc-a552b1700a2b type: investor attributes: name: Hane, Lehner and Goyette @@ -5664,7 +5743,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2022-10-26T08:15:58.510Z' + created_at: '2023-11-22T14:48:33.606Z' contact_email: contact_phone: picture: @@ -5676,11 +5755,11 @@ paths: relationships: owner: data: - id: 053a3fe6-0822-44af-9388-6c704ac27978 + id: 9b1e0d4f-9668-4939-8bdf-30617888306e type: user open_calls: data: [] - - id: ab258936-d538-473a-a5a9-83714eab4bdb + - id: 28de751e-c176-4cf5-b4f7-d7b79a7d3b8c type: investor attributes: name: Hilpert, Waters and Johnston @@ -5718,7 +5797,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2022-10-26T08:15:58.579Z' + created_at: '2023-11-22T14:48:33.620Z' contact_email: contact_phone: picture: @@ -5730,11 +5809,11 @@ paths: relationships: owner: data: - id: 751c6689-1526-4a09-9df8-51b143ac0eef + id: ab21545d-052e-46a2-9a57-227c100fdf16 type: user open_calls: data: [] - - id: d314b295-27ae-4d9d-8953-e95c5aefb477 + - id: f569b4e8-b6d1-4a4a-a0e2-ac1fb5fb0f68 type: investor attributes: name: Jacobson, Fritsch and Stanton @@ -5772,7 +5851,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2022-10-26T08:15:58.644Z' + created_at: '2023-11-22T14:48:33.635Z' contact_email: contact_phone: picture: @@ -5784,11 +5863,11 @@ paths: relationships: owner: data: - id: 74ad001d-9b26-4bee-9977-29515e07e384 + id: 4313f1a1-8f32-40fc-8964-fe305ff6e257 type: user open_calls: data: [] - - id: d31cedb2-47f1-4fd5-b5df-e8e704fff8cc + - id: ce5e1001-0804-4354-b16a-ad67377c1a65 type: investor attributes: name: Keebler, Kub and Zemlak @@ -5826,7 +5905,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2022-10-26T08:15:58.713Z' + created_at: '2023-11-22T14:48:33.653Z' contact_email: contact_phone: picture: @@ -5838,11 +5917,11 @@ paths: relationships: owner: data: - id: 66c58dc4-6b1c-48e3-93c0-67adfb6fd062 + id: 13ca7ef1-4615-47d1-8c72-38a1dd4a4789 type: user open_calls: data: [] - - id: 2a2900a4-1d95-46ec-8a37-23832959e5c3 + - id: ae1424d6-a3a3-40e6-8a62-75442d027437 type: investor attributes: name: Kutch-Spencer @@ -5879,7 +5958,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2022-10-26T08:15:58.306Z' + created_at: '2023-11-22T14:48:33.559Z' contact_email: contact_phone: picture: @@ -5891,7 +5970,7 @@ paths: relationships: owner: data: - id: 9df1b94a-6546-405c-9e14-6de662a0b608 + id: 586ef12f-b0c4-48d8-8550-307324d2e4d4 type: user open_calls: data: [] @@ -5957,7 +6036,7 @@ paths: application/json: example: data: - id: 2a2900a4-1d95-46ec-8a37-23832959e5c3 + id: ae1424d6-a3a3-40e6-8a62-75442d027437 type: investor attributes: name: Kutch-Spencer @@ -5994,7 +6073,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2022-10-26T08:15:58.306Z' + created_at: '2023-11-22T14:48:33.559Z' contact_email: contact_phone: picture: @@ -6006,7 +6085,7 @@ paths: relationships: owner: data: - id: 9df1b94a-6546-405c-9e14-6de662a0b608 + id: 586ef12f-b0c4-48d8-8550-307324d2e4d4 type: user open_calls: data: [] @@ -6140,14 +6219,14 @@ paths: application/json: example: data: - id: 24e086f6-5961-49ce-a551-daab9fac7f88 + id: 7caa338b-88ed-47a7-8e2e-aa57c53a84cb type: user attributes: first_name: Dawna last_name: Block email: dawna.block@example.org role: light - created_at: '2022-10-26T08:16:01.419Z' + created_at: '2023-11-22T14:48:34.721Z' ui_language: es account_language: pt otp_required_for_login: false @@ -6233,63 +6312,63 @@ paths: application/json: example: data: - - id: a957d3a8-29ec-4c0c-b394-541893e0c36f + - id: 4218118d-54c9-4498-9633-753a3742e9b2 type: location attributes: name: Canada location_type: country code: - created_at: '2022-10-26T08:16:01.939Z' + created_at: '2023-11-22T14:48:34.921Z' relationships: parent: data: - - id: 305ceef3-4f47-4ee0-9b3f-a291a7def815 + - id: af0de59f-291c-4919-aa2e-2aa72706924f type: location attributes: name: Papua New Guinea location_type: department code: - created_at: '2022-10-26T08:16:01.945Z' + created_at: '2023-11-22T14:48:34.923Z' relationships: parent: data: - id: a957d3a8-29ec-4c0c-b394-541893e0c36f + id: 4218118d-54c9-4498-9633-753a3742e9b2 type: location - - id: f26a4bca-2916-49aa-b5d7-b3a9d3fa177e + - id: b0810578-fc36-4400-863f-a8ee09136b8d type: location attributes: name: Jamaica location_type: municipality code: - created_at: '2022-10-26T08:16:01.949Z' + created_at: '2023-11-22T14:48:34.925Z' relationships: parent: data: - id: 305ceef3-4f47-4ee0-9b3f-a291a7def815 + id: af0de59f-291c-4919-aa2e-2aa72706924f type: location - - id: 0fcaeb99-3b8b-4da1-b78d-f3df627c936c + - id: bef44dc5-0598-4da2-9b47-b0cb40c07e89 type: location attributes: name: Libyan Arab Jamahiriya location_type: municipality code: - created_at: '2022-10-26T08:16:01.958Z' + created_at: '2023-11-22T14:48:34.927Z' relationships: parent: data: - id: 305ceef3-4f47-4ee0-9b3f-a291a7def815 + id: af0de59f-291c-4919-aa2e-2aa72706924f type: location - - id: 4e5231f2-d75f-4dfc-a588-3c661efffa68 + - id: eb9c350f-4633-4b42-86e4-a756934ca259 type: location attributes: name: India location_type: municipality code: - created_at: '2022-10-26T08:16:01.968Z' + created_at: '2023-11-22T14:48:34.928Z' relationships: parent: data: - id: 305ceef3-4f47-4ee0-9b3f-a291a7def815 + id: af0de59f-291c-4919-aa2e-2aa72706924f type: location schema: type: object @@ -6338,17 +6417,17 @@ paths: application/json: example: data: - id: f26a4bca-2916-49aa-b5d7-b3a9d3fa177e + id: b0810578-fc36-4400-863f-a8ee09136b8d type: location attributes: name: Jamaica location_type: municipality code: - created_at: '2022-10-26T08:16:01.949Z' + created_at: '2023-11-22T14:48:34.925Z' relationships: parent: data: - id: 305ceef3-4f47-4ee0-9b3f-a291a7def815 + id: af0de59f-291c-4919-aa2e-2aa72706924f type: location schema: type: object @@ -6433,7 +6512,7 @@ paths: application/json: example: data: - - id: e0b1439e-d9ab-42b4-a449-24f95c215b89 + - id: 3bdf5a22-953b-4efc-a1e5-610efee6d3cb type: open_call attributes: name: Open call 1 @@ -6453,15 +6532,14 @@ paths: impact_description: Placeat commodi libero. Quo recusandae repellat. Sunt commodi tempore. Voluptatem et corrupti. maximum_funding_per_project: 100000 - closing_at: '2023-08-26T08:16:02.791Z' + closing_at: '2024-09-22T14:48:35.062Z' status: launched language: en account_language: en verified: false - created_at: '2022-10-26T08:16:02.796Z' - updated_at: '2022-10-26T08:16:02.812Z' + created_at: '2023-11-22T14:48:35.064Z' + updated_at: '2023-11-22T14:48:35.069Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -6471,21 +6549,21 @@ paths: relationships: investor: data: - id: b1bd03b8-76c0-4503-a9e0-31d4fbfe1d9b + id: e1153a10-dc66-4803-b4f9-e87d566010a1 type: investor country: data: - id: 85063222-6404-4ff4-a433-88a85ebb6e2f + id: 214a14cf-8d73-485f-a1fb-98da56df66a6 type: location municipality: data: - id: 8d380a70-0558-4d5f-af0d-6b441a6ae9bc + id: 8b5fd2c4-3bab-4013-8653-7043a4f7ba68 type: location department: data: - id: ee235455-9220-45fd-a773-3ef07474f704 + id: ebb910ca-f288-4744-8168-58cf11bcc7c4 type: location - - id: 1ef9a0c5-9818-47a0-88bc-1b0accd0749d + - id: c5caf478-44f4-4b28-a743-74f3282a891d type: open_call attributes: name: Open call 2 @@ -6505,15 +6583,14 @@ paths: impact_description: Et quaerat omnis. Harum voluptas atque. Quo nesciunt voluptas. Suscipit ex cum. maximum_funding_per_project: 100000 - closing_at: '2023-08-26T08:16:02.923Z' + closing_at: '2024-09-22T14:48:35.098Z' status: launched language: en account_language: en verified: false - created_at: '2022-10-26T08:16:02.929Z' - updated_at: '2022-10-26T08:16:02.939Z' + created_at: '2023-11-22T14:48:35.100Z' + updated_at: '2023-11-22T14:48:35.106Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -6523,21 +6600,21 @@ paths: relationships: investor: data: - id: f427e787-91c2-4982-922d-94556bf53173 + id: 554cb5d8-d80d-4a5a-8562-2a53c0edf7c9 type: investor country: data: - id: 5ca98efc-f2ce-4d32-9ade-05d81fabd489 + id: 7301ff4c-1974-47d1-8f25-79e1879ac15e type: location municipality: data: - id: fcafa70d-63e3-4214-863a-d90a78664765 + id: 63c24390-79bd-4413-b765-6cd9b9937a10 type: location department: data: - id: 021f4185-5eaa-444e-b1db-555d63954da8 + id: 463823ac-34f2-4c80-8c3a-e682efe5df66 type: location - - id: 497ccc77-479e-4e25-b21e-a09f794b6f0a + - id: 70cba31c-1300-4fa7-96d2-66294e525e74 type: open_call attributes: name: Open call 3 @@ -6557,15 +6634,14 @@ paths: impact_description: Dolores fugiat nesciunt. Ut laborum dolores. Sit neque eos. Expedita molestiae quia. maximum_funding_per_project: 100000 - closing_at: '2023-08-26T08:16:03.025Z' + closing_at: '2024-09-22T14:48:35.136Z' status: launched language: en account_language: en verified: false - created_at: '2022-10-26T08:16:03.031Z' - updated_at: '2022-10-26T08:16:03.043Z' + created_at: '2023-11-22T14:48:35.138Z' + updated_at: '2023-11-22T14:48:35.144Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -6575,21 +6651,21 @@ paths: relationships: investor: data: - id: d5b1bc8b-2d71-450f-8a31-b14393a30d2d + id: f8f3022b-5f61-4c82-aec6-214bfdc33c35 type: investor country: data: - id: d3be241b-4e7f-46ea-bce1-a82231203be6 + id: df059055-547d-42ca-ad45-24cb5f775c2e type: location municipality: data: - id: cfcd9f74-3e9a-4672-adcb-9395a2fb85fb + id: 28c5bbe5-6297-402e-97c2-5e9adc55b285 type: location department: data: - id: e46e8820-3738-4785-be95-159dde27498c + id: 741575e2-7eb5-4947-8fec-5971b0479d0e type: location - - id: 3fa71e36-1764-41ce-8174-97acba7136d2 + - id: 8fdda509-884b-4e85-9782-9a459db32de6 type: open_call attributes: name: Open call 4 @@ -6609,15 +6685,14 @@ paths: impact_description: Autem et et. Voluptatem neque quibusdam. Repellat recusandae eum. Eius ex est. maximum_funding_per_project: 100000 - closing_at: '2023-08-26T08:16:03.122Z' + closing_at: '2024-09-22T14:48:35.175Z' status: launched language: en account_language: en verified: false - created_at: '2022-10-26T08:16:03.126Z' - updated_at: '2022-10-26T08:16:03.139Z' + created_at: '2023-11-22T14:48:35.177Z' + updated_at: '2023-11-22T14:48:35.182Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -6627,21 +6702,21 @@ paths: relationships: investor: data: - id: e2ea7787-f631-4f8d-ac0b-5672c037a8c6 + id: 89da67f7-d62b-45bf-894c-e917b1bc3335 type: investor country: data: - id: 9eebd963-a3b4-44b7-9f6d-758ed167a680 + id: f1d45607-9932-49c4-b92e-b86f5b1e26ff type: location municipality: data: - id: f94b770e-ca58-45b9-adb3-a98255a3f412 + id: fb2eed2d-2c92-4b7d-b488-32376a53c042 type: location department: data: - id: 4a008e3b-f54f-4a30-9f95-87be8e74dcea + id: 8ec38132-4b81-435b-ace4-83049755b480 type: location - - id: 4362ce13-f4db-4cc6-90fe-dabfbd8cb7d9 + - id: 0cbe936b-5c56-4868-9c62-6fdd86d37d59 type: open_call attributes: name: Open call 5 @@ -6661,15 +6736,14 @@ paths: impact_description: Porro soluta beatae. Quia ratione facilis. Eligendi sapiente voluptatem. Quas rerum officia. maximum_funding_per_project: 100000 - closing_at: '2023-08-26T08:16:03.220Z' + closing_at: '2024-09-22T14:48:35.212Z' status: launched language: en account_language: en verified: false - created_at: '2022-10-26T08:16:03.225Z' - updated_at: '2022-10-26T08:16:03.236Z' + created_at: '2023-11-22T14:48:35.214Z' + updated_at: '2023-11-22T14:48:35.220Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -6679,21 +6753,21 @@ paths: relationships: investor: data: - id: 39910c8f-9e65-4be4-8ed9-a562f398c634 + id: 6b133134-3867-475e-aeb6-10e24157a5b9 type: investor country: data: - id: 21e37a9e-d08f-47fa-b89a-f6d1d21be62d + id: 05327263-7369-4c15-bbef-4e2eb5efba77 type: location municipality: data: - id: 9e4b799c-7149-4a3c-9202-da1fc80b70e3 + id: d29d13a6-cec9-4623-9cda-07b8992f9726 type: location department: data: - id: bff73c2f-05e5-429b-b797-760a8ab88d13 + id: 2c2a2418-ce1a-420f-9d37-61374c1dd569 type: location - - id: 8f8d2d47-4d36-4fb0-bccd-50e7dfa9b0c6 + - id: 6a936e65-8cfb-41cd-a012-b9f3b35617ce type: open_call attributes: name: Open call 6 @@ -6713,15 +6787,14 @@ paths: impact_description: Mollitia aut vel. Qui illum accusantium. Et laudantium et. Sed recusandae aut. maximum_funding_per_project: 100000 - closing_at: '2023-08-26T08:16:03.331Z' + closing_at: '2024-09-22T14:48:35.257Z' status: launched language: en account_language: en verified: false - created_at: '2022-10-26T08:16:03.334Z' - updated_at: '2022-10-26T08:16:03.344Z' + created_at: '2023-11-22T14:48:35.259Z' + updated_at: '2023-11-22T14:48:35.265Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -6731,21 +6804,21 @@ paths: relationships: investor: data: - id: 03c0907d-3968-4d76-a2ff-279e67faa0be + id: 558efbcb-8055-4e02-ab6f-d094e04cc484 type: investor country: data: - id: f398bc05-7256-4715-95fe-cf3b679eff99 + id: 2e809227-cfb0-4059-bae6-73f047b9448c type: location municipality: data: - id: b4bbad84-1616-4b7f-959a-989fcad96ea2 + id: 15313c69-a9a3-4d25-91e4-2bb5203f40a7 type: location department: data: - id: e64f3ad8-35f1-427b-8624-fa9d7cee7ae5 + id: c079638f-08b0-4a43-9d58-f7e82f64b92e type: location - - id: a829e6a2-315a-49e8-bfa2-d3f8bcec715f + - id: 12633d0a-ec3e-4bec-a1ef-092911c93733 type: open_call attributes: name: Open call 8 @@ -6764,15 +6837,14 @@ paths: impact_description: Impedit animi eveniet. Quia illum aut. Dolore quia officiis. Non aut sit. maximum_funding_per_project: 100000 - closing_at: '2023-08-26T08:16:03.637Z' + closing_at: '2024-09-22T14:48:35.367Z' status: launched language: en account_language: pt verified: false - created_at: '2022-10-26T08:16:03.640Z' - updated_at: '2022-10-26T08:16:03.649Z' + created_at: '2023-11-22T14:48:35.369Z' + updated_at: '2023-11-22T14:48:35.375Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -6782,21 +6854,21 @@ paths: relationships: investor: data: - id: 6b7bd673-cc07-4c3c-9f10-286c11b6636e + id: 93eb23ef-a324-4725-9baa-96c028c5539e type: investor country: data: - id: d6ce83f5-fb33-4768-88d7-238df589afa1 + id: 3aa6fb06-fc1e-404a-afe7-e9d2c084ff5a type: location municipality: data: - id: 1be45768-5797-436c-8dbc-f5467dbca376 + id: a539e55d-cb35-4e49-87ca-12e2595632b1 type: location department: data: - id: 2617c579-2d01-41e6-b218-376919226543 + id: e2052c63-4636-49e5-944e-74317551a8b9 type: location - - id: f9428b68-c274-4413-b5b0-22c6a86273a8 + - id: 11c424e0-728e-4681-9db1-6a4f226686c7 type: open_call attributes: name: Yellow Banana @@ -6816,15 +6888,14 @@ paths: impact_description: Enim repellat pariatur. Earum modi eos. Libero tempora exercitationem. Qui dolorem quo. maximum_funding_per_project: 100000 - closing_at: '2023-08-26T08:16:02.678Z' + closing_at: '2024-09-22T14:48:35.025Z' status: launched language: en account_language: en verified: false - created_at: '2022-10-26T08:16:02.684Z' - updated_at: '2022-10-26T08:16:02.700Z' + created_at: '2023-11-22T14:48:35.027Z' + updated_at: '2023-11-22T14:48:35.032Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -6834,19 +6905,19 @@ paths: relationships: investor: data: - id: da1af5f4-3356-465b-9101-07bf0726bb98 + id: 48acc730-49dc-4596-b289-71f580b51699 type: investor country: data: - id: f9d274d3-e217-4902-92a4-a546247c887d + id: b57b3ef0-7dd6-4954-9554-ad738e10b87d type: location municipality: data: - id: 64572957-2be0-42d5-a92d-d90c4783b509 + id: 0cc2f662-a3ca-4af0-995c-182bb237def8 type: location department: data: - id: d36c82b8-cdc2-479d-aad1-0b2c8af8c253 + id: 2c380721-1653-4dae-8d88-88ed28fc85b2 type: location meta: page: 1 @@ -6916,7 +6987,7 @@ paths: application/json: example: data: - id: f9428b68-c274-4413-b5b0-22c6a86273a8 + id: 11c424e0-728e-4681-9db1-6a4f226686c7 type: open_call attributes: name: Yellow Banana @@ -6936,15 +7007,14 @@ paths: impact_description: Enim repellat pariatur. Earum modi eos. Libero tempora exercitationem. Qui dolorem quo. maximum_funding_per_project: 100000 - closing_at: '2023-08-26T08:16:02.678Z' + closing_at: '2024-09-22T14:48:35.025Z' status: launched language: en account_language: en verified: false - created_at: '2022-10-26T08:16:02.684Z' - updated_at: '2022-10-26T08:16:02.700Z' + created_at: '2023-11-22T14:48:35.027Z' + updated_at: '2023-11-22T14:48:35.032Z' open_call_applications_count: 0 - trusted: false picture: analyzed: false small: @@ -6954,19 +7024,19 @@ paths: relationships: investor: data: - id: da1af5f4-3356-465b-9101-07bf0726bb98 + id: 48acc730-49dc-4596-b289-71f580b51699 type: investor country: data: - id: f9d274d3-e217-4902-92a4-a546247c887d + id: b57b3ef0-7dd6-4954-9554-ad738e10b87d type: location municipality: data: - id: 64572957-2be0-42d5-a92d-d90c4783b509 + id: 0cc2f662-a3ca-4af0-995c-182bb237def8 type: location department: data: - id: d36c82b8-cdc2-479d-aad1-0b2c8af8c253 + id: 2c380721-1653-4dae-8d88-88ed28fc85b2 type: location schema: type: object @@ -7057,7 +7127,7 @@ paths: application/json: example: data: - - id: dfd0a958-6313-4369-87b5-49e55f882a85 + - id: f7a995b5-0543-4e6e-ae2e-0e17320e0126 type: project_developer attributes: name: Bartoletti and Sons @@ -7082,7 +7152,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2022-10-26T08:16:04.777Z' + created_at: '2023-11-22T14:48:35.763Z' contact_email: contact_phone: picture: @@ -7094,21 +7164,21 @@ paths: relationships: owner: data: - id: 7421c352-4063-4e7f-a8ee-4c80f1f6c14b + id: 0b43f1e1-4ed7-4104-906c-de1fff6a16ad type: user projects: data: - - id: d4645129-6be3-4779-96a9-611fb1978997 + - id: 455cc01f-6544-4a76-8f0a-b3ba0ee56a5e type: project involved_projects: data: [] priority_landscapes: data: - - id: efa4619e-297e-4b2d-8589-6065e4f439ec + - id: 720aba31-7652-4ef7-ad6c-2d853f4c8ee8 type: location - - id: f34794d7-baee-4bad-8e14-8992dc893a4d + - id: 8e670327-2a36-4e1e-8519-39133b709c40 type: location - - id: 226839f8-3e19-4c27-9bd7-5377e3f821b1 + - id: 1f51f4d4-0be2-4ad3-8f1f-bc8bbc68d335 type: project_developer attributes: name: Becker LLC @@ -7133,7 +7203,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2022-10-26T08:16:05.381Z' + created_at: '2023-11-22T14:48:36.039Z' contact_email: contact_phone: picture: @@ -7145,7 +7215,7 @@ paths: relationships: owner: data: - id: c0ea3bdd-4036-45dc-ad8c-6868c11db8e4 + id: 6cab7db4-3efd-4bab-bef6-59599458be3d type: user projects: data: [] @@ -7153,11 +7223,11 @@ paths: data: [] priority_landscapes: data: - - id: 34d67a2e-30a7-4357-830b-eee6dc6419c9 + - id: 3937393c-92d1-4a4e-b727-fc24f76bcdd0 type: location - - id: 3f453ec4-900b-4e05-8eba-d0474fe7d2fe + - id: 70cb9382-64c6-46d2-b2c6-d93bfd4b6f7f type: location - - id: 7c3a86df-6d83-4a10-a1f0-580965b30b51 + - id: 4b18d586-3667-4d3c-8edd-e1d589177c79 type: project_developer attributes: name: Hane, Lehner and Goyette @@ -7182,7 +7252,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2022-10-26T08:16:04.892Z' + created_at: '2023-11-22T14:48:35.813Z' contact_email: contact_phone: picture: @@ -7194,21 +7264,21 @@ paths: relationships: owner: data: - id: fbbf25dd-1371-4b57-a8a2-126ed9fa7807 + id: ff302468-47f7-4163-88b0-00be2b7df976 type: user projects: data: - - id: ea719096-af70-4826-8a1a-376013a4aab2 + - id: 830004ec-8756-4af0-ba68-56863a3d930d type: project involved_projects: data: [] priority_landscapes: data: - - id: 18f87a70-f474-4c2a-abed-d2f5bd1c3553 + - id: 58ac822d-c106-4c0a-b03d-997cf43d3fea type: location - - id: dd019e01-88b3-4836-be5b-14aa03fea453 + - id: 74fd5380-253e-4571-aabc-0dc052140514 type: location - - id: 384a9827-3fe7-43d8-b09c-e6dee1f1cf40 + - id: 7ab1a62c-3da9-4720-9584-7271408b3c37 type: project_developer attributes: name: Hilpert, Waters and Johnston @@ -7233,7 +7303,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2022-10-26T08:16:05.144Z' + created_at: '2023-11-22T14:48:35.903Z' contact_email: contact_phone: picture: @@ -7245,7 +7315,7 @@ paths: relationships: owner: data: - id: c9ec4bd5-26ca-49c1-974d-d939f3765e89 + id: ca9844be-5b56-4d6a-97f0-b63649544705 type: user projects: data: [] @@ -7253,11 +7323,11 @@ paths: data: [] priority_landscapes: data: - - id: a05eb4dd-8dac-4fe6-9f5e-f5bac842a918 + - id: 3165aa2d-ea61-4020-88ea-a60fbd63d9a8 type: location - - id: ec766c47-5600-44ec-97cd-4379448a879c + - id: 51b2695c-fa42-4e51-9970-1c0ed481a484 type: location - - id: 7e1dad93-8140-454b-90e5-9335cee2ed2a + - id: 52072fcd-7cb5-48a7-a663-44951ef118d4 type: project_developer attributes: name: Jacobson, Fritsch and Stanton @@ -7282,7 +7352,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2022-10-26T08:16:05.218Z' + created_at: '2023-11-22T14:48:35.929Z' contact_email: contact_phone: picture: @@ -7294,7 +7364,7 @@ paths: relationships: owner: data: - id: c2e0b5af-7c1d-4867-ad1a-9842cae6c759 + id: 37c70ac8-19b0-4454-911c-9ad65bb895db type: user projects: data: [] @@ -7302,11 +7372,11 @@ paths: data: [] priority_landscapes: data: - - id: 973fb8cc-42fa-484f-bd65-3d0c8cd4cd8d + - id: 92343f4c-e740-475b-ab66-7e48545b17f6 type: location - - id: 14eb1470-d45e-4e78-a9ff-6c4021cd5c29 + - id: adfe2436-5423-4baa-917d-737b9cb6ed6b type: location - - id: b1148e66-c2fb-4cf9-ac76-d9caa9a1552a + - id: 5395859f-b143-449b-ac51-fce4711eb2a6 type: project_developer attributes: name: Keebler, Kub and Zemlak @@ -7331,7 +7401,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2022-10-26T08:16:05.296Z' + created_at: '2023-11-22T14:48:35.977Z' contact_email: contact_phone: picture: @@ -7343,7 +7413,7 @@ paths: relationships: owner: data: - id: 0b60d938-efa5-4db6-bb39-2f9ffec6785e + id: 53d07651-c403-4f4f-9813-af8ea2385a58 type: user projects: data: [] @@ -7351,11 +7421,11 @@ paths: data: [] priority_landscapes: data: - - id: d6b3d54e-1263-4b03-871f-b423d2c94b5b + - id: 30dd8abf-b32c-4652-b173-fd09bf1a6aba type: location - - id: 743805a2-bfe8-4dc8-87b4-f5b2a855e277 + - id: b1645f4e-b099-46b0-ab85-9b799bf8389d type: location - - id: 064a6f97-07e3-4754-a3bf-c2703c408e89 + - id: 4d4a957c-7a7f-4288-8629-63da441fbe08 type: project_developer attributes: name: Kutch-Spencer @@ -7378,7 +7448,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2022-10-26T08:16:04.967Z' + created_at: '2023-11-22T14:48:35.848Z' contact_email: contact_phone: picture: @@ -7390,23 +7460,23 @@ paths: relationships: owner: data: - id: 2cd8a84c-fd52-4ed8-9534-2ef951c9d684 + id: 38d78cfa-5645-404d-8e5b-488d345da5ce type: user projects: data: [] involved_projects: data: - - id: d4645129-6be3-4779-96a9-611fb1978997 + - id: 455cc01f-6544-4a76-8f0a-b3ba0ee56a5e type: project - - id: ea719096-af70-4826-8a1a-376013a4aab2 + - id: 830004ec-8756-4af0-ba68-56863a3d930d type: project priority_landscapes: data: - - id: 52dcb73e-a7b0-4d20-b28c-986a7a7a0b46 + - id: 67a0ac6b-518c-452f-adcd-9e1cf6df7f68 type: location - - id: 7c128812-95dd-4509-8fac-0ea9732bf72a + - id: 6d12efd4-23f2-486d-a929-abf790a34592 type: location - - id: 7862b7d7-4805-422e-8504-864d9e22bd9b + - id: 1207d483-a0b2-4c08-b406-c415abc3d883 type: project_developer attributes: name: Lind, Langworth and Gottlieb @@ -7430,7 +7500,7 @@ paths: account_language: pt entity_legal_registration_number: '564823570' review_status: approved - created_at: '2022-10-26T08:16:05.693Z' + created_at: '2023-11-22T14:48:36.206Z' contact_email: contact_phone: picture: @@ -7442,7 +7512,7 @@ paths: relationships: owner: data: - id: f5fef855-6611-480c-adb5-8e0713cbd42f + id: 738057d8-710d-478b-a912-6490a2789f4c type: user projects: data: [] @@ -7450,11 +7520,11 @@ paths: data: [] priority_landscapes: data: - - id: a6b3dd8d-fa16-4f84-996e-b04862b513b6 + - id: 589a0130-da79-4ee7-9972-c054d43f540b type: location - - id: 1f355aa1-9621-43f8-9331-ba6e2573dcdc + - id: be31edf9-d24e-4207-adf3-b7eacaba17a0 type: location - - id: 8c711780-6f2f-4224-9e51-7e05ed1bcda7 + - id: 3b6c75a1-2cb1-4bd9-9627-2a366cb933c1 type: project_developer attributes: name: Ritchie, Glover and Ward @@ -7479,7 +7549,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2022-10-26T08:16:05.513Z' + created_at: '2023-11-22T14:48:36.128Z' contact_email: contact_phone: picture: @@ -7491,7 +7561,7 @@ paths: relationships: owner: data: - id: 79a84e5f-820b-436f-8acc-068d07d02ab2 + id: 101c071f-18ee-4176-9a36-3ff453c2347b type: user projects: data: [] @@ -7499,11 +7569,11 @@ paths: data: [] priority_landscapes: data: - - id: 9b14057c-487c-4911-8090-35f6628f0389 + - id: 3008eaff-f26d-44fe-8c7c-6ba742d32922 type: location - - id: ba1e478e-f06b-4b0e-a597-ff9e3a3048b0 + - id: bff2177e-02e4-4fbc-b290-c0b3964d74c8 type: location - - id: dfd9065e-c215-4604-b791-b91eba79a4db + - id: a55e766b-4770-4773-b2ad-7ec0c7706817 type: project_developer attributes: name: Runolfsson and Sons @@ -7528,7 +7598,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2022-10-26T08:16:05.446Z' + created_at: '2023-11-22T14:48:36.103Z' contact_email: contact_phone: picture: @@ -7540,7 +7610,7 @@ paths: relationships: owner: data: - id: 5f7bfc2c-8d76-43ce-8e5a-43935dacade0 + id: 8bfeed09-23f4-4c1d-a54f-f69be09a4b55 type: user projects: data: [] @@ -7548,9 +7618,9 @@ paths: data: [] priority_landscapes: data: - - id: 7134b3bb-6122-4306-9bbf-7c808ec0cf5d + - id: ae582228-52a9-48f4-8a4b-ade742e5ad43 type: location - - id: 1e0c2e65-8e1d-4cfa-ba03-4eb813908089 + - id: ba82eda1-7362-4f6f-b4e6-f8f34ad39742 type: location meta: page: 1 @@ -7620,7 +7690,7 @@ paths: application/json: example: data: - id: 064a6f97-07e3-4754-a3bf-c2703c408e89 + id: 4d4a957c-7a7f-4288-8629-63da441fbe08 type: project_developer attributes: name: Kutch-Spencer @@ -7643,7 +7713,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2022-10-26T08:16:04.967Z' + created_at: '2023-11-22T14:48:35.848Z' contact_email: contact_phone: picture: @@ -7655,21 +7725,21 @@ paths: relationships: owner: data: - id: 2cd8a84c-fd52-4ed8-9534-2ef951c9d684 + id: 38d78cfa-5645-404d-8e5b-488d345da5ce type: user projects: data: [] involved_projects: data: - - id: d4645129-6be3-4779-96a9-611fb1978997 + - id: 455cc01f-6544-4a76-8f0a-b3ba0ee56a5e type: project - - id: ea719096-af70-4826-8a1a-376013a4aab2 + - id: 830004ec-8756-4af0-ba68-56863a3d930d type: project priority_landscapes: data: - - id: 52dcb73e-a7b0-4d20-b28c-986a7a7a0b46 + - id: 67a0ac6b-518c-452f-adcd-9e1cf6df7f68 type: location - - id: 7c128812-95dd-4509-8fac-0ea9732bf72a + - id: 6d12efd4-23f2-486d-a929-abf790a34592 type: location schema: type: object @@ -7743,60 +7813,53 @@ paths: application/json: example: data: - - id: e962af7d-7968-441b-8b0b-b430b601638d + - id: 7c64b93f-5135-4b9a-ba75-1dd5f388ff94 type: project_map attributes: verified: false category: forestry-and-agroforestry - trusted: false - latitude: 2.0 - longitude: 1.0 - - id: 1b044f12-beed-40a8-828d-52f165546b63 + latitude: 39.21309022641362 + longitude: -5.87810037515931 + - id: 30cec179-d6c4-46b2-877b-934471619c09 type: project_map attributes: verified: false category: forestry-and-agroforestry - trusted: false - latitude: 2.0 - longitude: 1.0 - - id: 5993d03d-3eb3-4624-9d8b-7f71dbd9543a + latitude: 39.21309022641362 + longitude: -5.87810037515931 + - id: d434c2df-ad80-4b8e-b004-26192655da21 type: project_map attributes: verified: false category: forestry-and-agroforestry - trusted: false - latitude: 2.0 - longitude: 1.0 - - id: 2b8559a2-8562-446f-81f2-c6999f276f01 + latitude: 39.21309022641362 + longitude: -5.87810037515931 + - id: fec65b45-e08d-42c6-b2dd-366eff508843 type: project_map attributes: verified: false category: forestry-and-agroforestry - trusted: false - latitude: 2.0 - longitude: 1.0 - - id: 20b7f590-7524-4419-9834-242620a8105d + latitude: 39.21309022641362 + longitude: -5.87810037515931 + - id: 72105ed8-f327-48ba-9c23-2677de34f828 type: project_map attributes: verified: false category: forestry-and-agroforestry - trusted: false - latitude: 2.0 - longitude: 1.0 - - id: '071690ad-b99f-4847-857c-cb9962f70de3' + latitude: 39.21309022641362 + longitude: -5.87810037515931 + - id: 8456f838-c028-41a4-a892-5ae5f103939c type: project_map attributes: verified: false category: forestry-and-agroforestry - trusted: false - latitude: 2.0 - longitude: 1.0 - - id: 6bc1ba48-d14c-43df-98e9-9fc97f25baac + latitude: 39.21309022641362 + longitude: -5.87810037515931 + - id: c57d2015-b685-4605-87bc-4bd7ab9d1a0a type: project_map attributes: verified: false category: non-timber-forest-production - trusted: false latitude: 0.5 longitude: 0.5 schema: @@ -7816,8 +7879,6 @@ paths: properties: verified: type: boolean - trusted: - type: boolean latitude: type: number longitude: @@ -7938,7 +7999,7 @@ paths: application/json: example: data: - - id: a85fb027-a70b-47ed-b3c5-b5f9ee05f625 + - id: a0873224-4b19-4e94-97b6-0c466e4138fd type: project attributes: name: Project 1 @@ -7986,13 +8047,30 @@ paths: language: en account_language: en geometry: - type: Point + type: Polygon coordinates: - - 1.0 - - 2.0 + - - - -7.256596802202454 + - 39.42149705239956 + - - -5.510236906689473 + - 40.02677860935444 + - - -4.408874148363334 + - 39.419930008870296 + - - -5.205992932301829 + - 38.67169482742881 + - - -6.402685625872827 + - 38.39721372248553 + - - -7.059852379049463 + - 38.94985978831832 + - - -7.256596802202454 + - 39.42149705239956 verified: false - created_at: '2022-10-26T08:16:09.447Z' - updated_at: '2022-10-26T08:16:09.447Z' + created_at: '2023-11-22T14:48:37.775Z' + updated_at: '2023-11-22T14:48:37.775Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: municipality_biodiversity_impact: municipality_climate_impact: municipality_water_impact: @@ -8009,27 +8087,26 @@ paths: priority_landscape_community_impact: priority_landscape_total_impact: impact_calculated: false - trusted: false - latitude: 2.0 - longitude: 1.0 + latitude: 39.21309022641362 + longitude: -5.87810037515931 favourite: funded: relationships: project_developer: data: - id: 00caac8c-66ad-4ec3-9e50-4b5a0d2dc499 + id: 7f312ab4-5b77-4572-8be8-847b77df86a0 type: project_developer country: data: - id: a992eb03-c6ce-487a-b3cb-b25e936bde56 + id: f95527d0-a45c-4ea9-9459-0eb3f986bfec type: location municipality: data: - id: bed30107-6ef3-4a23-80bd-364df693e85c + id: 7c533752-c7ef-46c7-bdaa-6f58fc981949 type: location department: data: - id: ec989081-2b2b-4cfc-923e-b90cee14180e + id: '07019d8d-4971-41d8-81fa-12e5b576a792' type: location priority_landscape: data: @@ -8037,7 +8114,7 @@ paths: data: [] project_images: data: [] - - id: 886ed1fe-58ad-4191-a55f-565f9014d16d + - id: 97a466e6-8b3b-45ef-931a-132a9518c9b2 type: project attributes: name: Project 2 @@ -8085,13 +8162,30 @@ paths: language: en account_language: en geometry: - type: Point + type: Polygon coordinates: - - 1.0 - - 2.0 + - - - -7.256596802202454 + - 39.42149705239956 + - - -5.510236906689473 + - 40.02677860935444 + - - -4.408874148363334 + - 39.419930008870296 + - - -5.205992932301829 + - 38.67169482742881 + - - -6.402685625872827 + - 38.39721372248553 + - - -7.059852379049463 + - 38.94985978831832 + - - -7.256596802202454 + - 39.42149705239956 verified: false - created_at: '2022-10-26T08:16:09.566Z' - updated_at: '2022-10-26T08:16:09.566Z' + created_at: '2023-11-22T14:48:37.829Z' + updated_at: '2023-11-22T14:48:37.829Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: municipality_biodiversity_impact: municipality_climate_impact: municipality_water_impact: @@ -8108,27 +8202,26 @@ paths: priority_landscape_community_impact: priority_landscape_total_impact: impact_calculated: false - trusted: false - latitude: 2.0 - longitude: 1.0 + latitude: 39.21309022641362 + longitude: -5.87810037515931 favourite: funded: relationships: project_developer: data: - id: ac5e9b25-aeb6-4155-a305-ae943049653a + id: 70b27ea2-7072-4a78-8d1d-fd0c5de91370 type: project_developer country: data: - id: 13517c08-0043-48ca-b4e3-63d6f6521583 + id: ef157691-ca85-4431-bdd1-f695a92e0065 type: location municipality: data: - id: d29c92d7-ed32-438b-b26a-2798d9166d5d + id: 9e7de6c5-08f0-4652-a407-bd4307dd5415 type: location department: data: - id: c2c7964a-0c84-462d-ad8b-009c19e0362f + id: 41328c86-51d2-4613-b840-0e7185d41023 type: location priority_landscape: data: @@ -8136,7 +8229,7 @@ paths: data: [] project_images: data: [] - - id: 314fb266-41eb-4bf9-a950-f4d8a4885812 + - id: ab3e27c8-1f22-47bb-a570-8de006c247f5 type: project attributes: name: Project 3 @@ -8184,13 +8277,30 @@ paths: language: en account_language: en geometry: - type: Point + type: Polygon coordinates: - - 1.0 - - 2.0 + - - - -7.256596802202454 + - 39.42149705239956 + - - -5.510236906689473 + - 40.02677860935444 + - - -4.408874148363334 + - 39.419930008870296 + - - -5.205992932301829 + - 38.67169482742881 + - - -6.402685625872827 + - 38.39721372248553 + - - -7.059852379049463 + - 38.94985978831832 + - - -7.256596802202454 + - 39.42149705239956 verified: false - created_at: '2022-10-26T08:16:09.691Z' - updated_at: '2022-10-26T08:16:09.691Z' + created_at: '2023-11-22T14:48:37.884Z' + updated_at: '2023-11-22T14:48:37.884Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: municipality_biodiversity_impact: municipality_climate_impact: municipality_water_impact: @@ -8207,27 +8317,26 @@ paths: priority_landscape_community_impact: priority_landscape_total_impact: impact_calculated: false - trusted: false - latitude: 2.0 - longitude: 1.0 + latitude: 39.21309022641362 + longitude: -5.87810037515931 favourite: funded: relationships: project_developer: data: - id: 1140c237-9aa7-4523-9d0f-6ace0a22476d + id: f9584e3f-39a3-42bc-a3d0-0826e66e1cc4 type: project_developer country: data: - id: b0f5615b-c897-4984-b50a-3aaf03005b34 + id: e90f7737-1348-4576-9d65-6a9bdaf4bfb5 type: location municipality: data: - id: 350f9b85-94ac-47ee-8618-dbfa8520b9be + id: eeb842e8-c2ac-49c2-908a-18a613b7014b type: location department: data: - id: 499c837c-7078-41b7-9ab3-8197e38bd3b3 + id: 9f086130-b0f0-4173-b2ea-27808906c8e8 type: location priority_landscape: data: @@ -8235,7 +8344,7 @@ paths: data: [] project_images: data: [] - - id: '09fdee73-05df-4f93-997d-baf47743f340' + - id: '0123970b-2960-4e80-a327-da2d9e3ec7a9' type: project attributes: name: Project 4 @@ -8283,13 +8392,30 @@ paths: language: en account_language: en geometry: - type: Point + type: Polygon coordinates: - - 1.0 - - 2.0 + - - - -7.256596802202454 + - 39.42149705239956 + - - -5.510236906689473 + - 40.02677860935444 + - - -4.408874148363334 + - 39.419930008870296 + - - -5.205992932301829 + - 38.67169482742881 + - - -6.402685625872827 + - 38.39721372248553 + - - -7.059852379049463 + - 38.94985978831832 + - - -7.256596802202454 + - 39.42149705239956 verified: false - created_at: '2022-10-26T08:16:09.794Z' - updated_at: '2022-10-26T08:16:09.794Z' + created_at: '2023-11-22T14:48:37.940Z' + updated_at: '2023-11-22T14:48:37.940Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: municipality_biodiversity_impact: municipality_climate_impact: municipality_water_impact: @@ -8306,27 +8432,26 @@ paths: priority_landscape_community_impact: priority_landscape_total_impact: impact_calculated: false - trusted: false - latitude: 2.0 - longitude: 1.0 + latitude: 39.21309022641362 + longitude: -5.87810037515931 favourite: funded: relationships: project_developer: data: - id: 707784d2-95e9-43dc-89ff-821e825a11cb + id: 5971ca6a-bb72-4504-8023-14a72daad9d3 type: project_developer country: data: - id: 6d9fade3-242c-4247-bbd4-6896b89b26db + id: 44fc0315-d2f6-48d1-a51c-5bba2a64cf63 type: location municipality: data: - id: 070c53ef-ab48-4b71-adca-ffb0db1e9e7e + id: f36e0bf9-a0cc-4733-b2eb-f0a791233c61 type: location department: data: - id: 3b6f7943-4aca-4149-96ca-4bc29368e4ea + id: f966bc0f-4a34-4525-8b08-d155665d2e98 type: location priority_landscape: data: @@ -8334,7 +8459,7 @@ paths: data: [] project_images: data: [] - - id: d74c5bb7-d86b-42b7-b85d-2769172bb2e7 + - id: 1308d3d0-436f-4861-81ae-f883b1b01801 type: project attributes: name: Project 5 @@ -8382,13 +8507,30 @@ paths: language: en account_language: en geometry: - type: Point + type: Polygon coordinates: - - 1.0 - - 2.0 + - - - -7.256596802202454 + - 39.42149705239956 + - - -5.510236906689473 + - 40.02677860935444 + - - -4.408874148363334 + - 39.419930008870296 + - - -5.205992932301829 + - 38.67169482742881 + - - -6.402685625872827 + - 38.39721372248553 + - - -7.059852379049463 + - 38.94985978831832 + - - -7.256596802202454 + - 39.42149705239956 verified: false - created_at: '2022-10-26T08:16:09.909Z' - updated_at: '2022-10-26T08:16:09.909Z' + created_at: '2023-11-22T14:48:37.995Z' + updated_at: '2023-11-22T14:48:37.995Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: municipality_biodiversity_impact: municipality_climate_impact: municipality_water_impact: @@ -8405,27 +8547,26 @@ paths: priority_landscape_community_impact: priority_landscape_total_impact: impact_calculated: false - trusted: false - latitude: 2.0 - longitude: 1.0 + latitude: 39.21309022641362 + longitude: -5.87810037515931 favourite: funded: relationships: project_developer: data: - id: 2d89fcaa-3464-4aef-b943-1db851d49f41 + id: b63b068e-deab-426e-a7e0-fb115abb2cb1 type: project_developer country: data: - id: 5a6dced4-1569-49b7-a4ff-0eee884a5b79 + id: a558e739-2483-4862-89a0-03b46db6d4fd type: location municipality: data: - id: ca7ac57a-b0bf-46c6-bdc2-46a76141e8e4 + id: 8ad05ae4-8491-48cc-a607-bad268db6c44 type: location department: data: - id: c16bb2e8-507d-4b90-8453-d7b6c1cd8eff + id: e0327c28-6b6f-4883-a889-2bef9646f331 type: location priority_landscape: data: @@ -8433,7 +8574,7 @@ paths: data: [] project_images: data: [] - - id: 9e8dc2e0-ccfa-415a-ad58-c2a3857d65c0 + - id: eb887efd-3e44-4d51-b5d7-dbd772628f96 type: project attributes: name: Project 6 @@ -8481,13 +8622,30 @@ paths: language: en account_language: en geometry: - type: Point + type: Polygon coordinates: - - 1.0 - - 2.0 + - - - -7.256596802202454 + - 39.42149705239956 + - - -5.510236906689473 + - 40.02677860935444 + - - -4.408874148363334 + - 39.419930008870296 + - - -5.205992932301829 + - 38.67169482742881 + - - -6.402685625872827 + - 38.39721372248553 + - - -7.059852379049463 + - 38.94985978831832 + - - -7.256596802202454 + - 39.42149705239956 verified: false - created_at: '2022-10-26T08:16:10.016Z' - updated_at: '2022-10-26T08:16:10.016Z' + created_at: '2023-11-22T14:48:38.051Z' + updated_at: '2023-11-22T14:48:38.051Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: municipality_biodiversity_impact: municipality_climate_impact: municipality_water_impact: @@ -8504,27 +8662,26 @@ paths: priority_landscape_community_impact: priority_landscape_total_impact: impact_calculated: false - trusted: false - latitude: 2.0 - longitude: 1.0 + latitude: 39.21309022641362 + longitude: -5.87810037515931 favourite: funded: relationships: project_developer: data: - id: ab1ecf44-233d-40c2-b00f-65ceb74337d3 + id: 427d8aac-e9ec-4bfd-a08b-5b6298bb9044 type: project_developer country: data: - id: a2019ca6-afa7-401f-ab29-10c4e941a261 + id: 6b2afb85-0149-4f1d-8782-4a9529426577 type: location municipality: data: - id: 31498cc6-5800-4fe9-970e-8d7775120fc4 + id: 92f2400c-a70c-420c-9b1d-b0cf5497c385 type: location department: data: - id: 82adfdce-6e69-4568-a729-a6bf1848e6a4 + id: e86efe4c-6251-4168-92b3-f01bbdc06f9a type: location priority_landscape: data: @@ -8532,7 +8689,7 @@ paths: data: [] project_images: data: [] - - id: ca5f0f65-21dd-44cf-a9f6-73eb1c922665 + - id: cf15b0b5-1d8a-4128-8dca-693c407ba277 type: project attributes: name: Project 9 @@ -8579,13 +8736,30 @@ paths: language: en account_language: pt geometry: - type: Point + type: Polygon coordinates: - - 1.0 - - 2.0 + - - - -7.256596802202454 + - 39.42149705239956 + - - -5.510236906689473 + - 40.02677860935444 + - - -4.408874148363334 + - 39.419930008870296 + - - -5.205992932301829 + - 38.67169482742881 + - - -6.402685625872827 + - 38.39721372248553 + - - -7.059852379049463 + - 38.94985978831832 + - - -7.256596802202454 + - 39.42149705239956 verified: false - created_at: '2022-10-26T08:16:10.547Z' - updated_at: '2022-10-26T08:16:10.547Z' + created_at: '2023-11-22T14:48:38.251Z' + updated_at: '2023-11-22T14:48:38.251Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: municipality_biodiversity_impact: municipality_climate_impact: municipality_water_impact: @@ -8602,27 +8776,26 @@ paths: priority_landscape_community_impact: priority_landscape_total_impact: impact_calculated: false - trusted: false - latitude: 2.0 - longitude: 1.0 + latitude: 39.21309022641362 + longitude: -5.87810037515931 favourite: funded: relationships: project_developer: data: - id: 5b84dd1c-7e6f-4ed0-a658-5547f56f83c5 + id: 1093b39f-dfaf-4861-910e-9d6136dd859f type: project_developer country: data: - id: 2b5fc2e8-71ca-4c6e-924d-e3342f646473 + id: 452509b8-15d8-402e-9319-51ba6ba1f63b type: location municipality: data: - id: b910e52a-427e-4c4b-a675-98ad5e576893 + id: 28c1084d-fa57-4d99-860d-5ce2a9a2cb62 type: location department: data: - id: 4e46067e-fe3c-4f4c-a6cb-86cd85342fdd + id: b77dd0e1-5e7c-4e3c-a0be-64def62747ce type: location priority_landscape: data: @@ -8630,7 +8803,7 @@ paths: data: [] project_images: data: [] - - id: ea54e608-d5bb-48a9-8f9a-a3ee9a3542b1 + - id: 7a61fa47-0a12-49c2-9b3e-7a0d582a68fc type: project attributes: name: Yellow Banana @@ -8691,8 +8864,13 @@ paths: - - 0.0 - 0.0 verified: false - created_at: '2022-10-26T08:16:09.280Z' - updated_at: '2022-10-26T08:16:09.280Z' + created_at: '2023-11-22T14:48:37.709Z' + updated_at: '2023-11-22T14:48:37.709Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: municipality_biodiversity_impact: municipality_climate_impact: municipality_water_impact: @@ -8709,7 +8887,6 @@ paths: priority_landscape_community_impact: priority_landscape_total_impact: impact_calculated: false - trusted: false latitude: 0.5 longitude: 0.5 favourite: @@ -8717,35 +8894,35 @@ paths: relationships: project_developer: data: - id: 6bbf8ef2-acf1-4056-97bf-9a62cb438525 + id: 8d4a6f9e-4267-4951-86a3-17b694076399 type: project_developer country: data: - id: c0ee0650-6f18-4a55-84f2-dffb8d89c1b3 + id: 35f83ff1-1abd-466f-8664-81979f8e316e type: location municipality: data: - id: 51e2d32e-cdcf-4d94-8850-4c768478a3bc + id: 8a1707f6-ec33-468a-bc08-fa0ec105942d type: location department: data: - id: c534c394-35dd-44be-bf72-f6791ffe3de4 + id: 69d2adce-5d1c-4b1c-8ff4-4ffc322a59d5 type: location priority_landscape: data: - id: 123f92fb-a6e9-4c86-99cf-9ba25866bc5f + id: bf49429a-f929-46cf-81bd-65a87bbffe92 type: location involved_project_developers: data: - - id: 1a61738f-1eb5-46bc-afbd-30260620f9c6 + - id: 71e6f4c0-0e89-4494-a666-15ca639d86a0 type: project_developer - - id: 0c9a5250-0eb8-4315-b600-87768a7248bd + - id: 43b63380-7475-4422-847d-3dbee61a209a type: project_developer project_images: data: - - id: a1d1d114-0138-461c-83ce-190699fda73a + - id: da560236-1d43-4f7e-a356-1474a7d5c7c8 type: project_image - - id: 204305ac-6058-4f36-b81a-75f44e5f7609 + - id: 9e548909-887e-40fb-b3cc-77b062723d36 type: project_image meta: page: 1 @@ -8815,7 +8992,7 @@ paths: application/json: example: data: - id: ea54e608-d5bb-48a9-8f9a-a3ee9a3542b1 + id: 7a61fa47-0a12-49c2-9b3e-7a0d582a68fc type: project attributes: name: Yellow Banana @@ -8876,8 +9053,13 @@ paths: - - 0.0 - 0.0 verified: false - created_at: '2022-10-26T08:16:09.280Z' - updated_at: '2022-10-26T08:16:09.280Z' + created_at: '2023-11-22T14:48:37.709Z' + updated_at: '2023-11-22T14:48:37.709Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: municipality_biodiversity_impact: municipality_climate_impact: municipality_water_impact: @@ -8894,7 +9076,6 @@ paths: priority_landscape_community_impact: priority_landscape_total_impact: impact_calculated: false - trusted: false latitude: 0.5 longitude: 0.5 favourite: @@ -8902,35 +9083,35 @@ paths: relationships: project_developer: data: - id: 6bbf8ef2-acf1-4056-97bf-9a62cb438525 + id: 8d4a6f9e-4267-4951-86a3-17b694076399 type: project_developer country: data: - id: c0ee0650-6f18-4a55-84f2-dffb8d89c1b3 + id: 35f83ff1-1abd-466f-8664-81979f8e316e type: location municipality: data: - id: 51e2d32e-cdcf-4d94-8850-4c768478a3bc + id: 8a1707f6-ec33-468a-bc08-fa0ec105942d type: location department: data: - id: c534c394-35dd-44be-bf72-f6791ffe3de4 + id: 69d2adce-5d1c-4b1c-8ff4-4ffc322a59d5 type: location priority_landscape: data: - id: 123f92fb-a6e9-4c86-99cf-9ba25866bc5f + id: bf49429a-f929-46cf-81bd-65a87bbffe92 type: location involved_project_developers: data: - - id: 1a61738f-1eb5-46bc-afbd-30260620f9c6 + - id: 71e6f4c0-0e89-4494-a666-15ca639d86a0 type: project_developer - - id: 0c9a5250-0eb8-4315-b600-87768a7248bd + - id: 43b63380-7475-4422-847d-3dbee61a209a type: project_developer project_images: data: - - id: a1d1d114-0138-461c-83ce-190699fda73a + - id: da560236-1d43-4f7e-a356-1474a7d5c7c8 type: project_image - - id: 204305ac-6058-4f36-b81a-75f44e5f7609 + - id: 9e548909-887e-40fb-b3cc-77b062723d36 type: project_image schema: type: object @@ -8978,14 +9159,14 @@ paths: application/json: example: data: - id: e2faa8ea-3388-4a87-b30a-821349c2c4f8 + id: e6d716d9-1fe7-47b2-89b3-f948175fa5bb type: user attributes: first_name: Dawna last_name: Block email: user@example.com role: light - created_at: '2022-10-26T08:16:12.302Z' + created_at: '2023-11-22T14:48:38.945Z' ui_language: en account_language: otp_required_for_login: false @@ -9041,14 +9222,14 @@ paths: application/json: example: data: - id: 1a5ddbf4-a549-48b4-8dc1-1f8c2f155918 + id: b24b614d-c0a1-4f8b-ba44-c1504d04f0ac type: user attributes: first_name: Dawna last_name: Block email: user@example.com role: light - created_at: '2022-10-26T08:16:12.540Z' + created_at: '2023-11-22T14:48:39.039Z' ui_language: en account_language: otp_required_for_login: false @@ -9158,48 +9339,6 @@ paths: required: - email - password - "/api/v1/test_jobs/test_sync": - post: - summary: Tests sync processing - tags: - - Test Jobs - security: - - csrf: [] - parameters: [] - responses: - '200': - description: success - requestBody: - content: - application/json: - schema: - type: object - properties: - email: - type: string - required: - - email - "/api/v1/test_jobs/test_async": - post: - summary: Tests async processing - tags: - - Test Jobs - security: - - csrf: [] - parameters: [] - responses: - '200': - description: success - requestBody: - content: - application/json: - schema: - type: object - properties: - email: - type: string - required: - - email "/api/v1/user": post: summary: Creates/Registers user @@ -9215,14 +9354,14 @@ paths: application/json: example: data: - id: b131af8c-a50b-4004-aa2a-95cd8c789071 + id: 0e3c50e0-ce8e-4a03-a29c-67b4fb6a7015 type: user attributes: first_name: Jan last_name: Kowalski email: jankowalski@example.com role: light - created_at: '2022-10-26T08:16:13.507Z' + created_at: '2023-11-22T14:48:39.356Z' ui_language: en account_language: otp_required_for_login: false @@ -9311,14 +9450,14 @@ paths: application/json: example: data: - id: f980134d-a0ec-4f42-a692-0cba38bac0ae + id: b3c5e3c3-3f60-4cd5-bdfd-daf3e5ebb257 type: user attributes: first_name: New First Name last_name: New Last Name email: user@example.com role: light - created_at: '2022-10-26T08:16:13.372Z' + created_at: '2023-11-22T14:48:39.311Z' ui_language: en account_language: otp_required_for_login: true @@ -9381,14 +9520,14 @@ paths: application/json: example: data: - id: f980134d-a0ec-4f42-a692-0cba38bac0ae + id: b3c5e3c3-3f60-4cd5-bdfd-daf3e5ebb257 type: user attributes: first_name: Dawna last_name: Block email: user@example.com role: light - created_at: '2022-10-26T08:16:13.372Z' + created_at: '2023-11-22T14:48:39.311Z' ui_language: en account_language: otp_required_for_login: false @@ -9472,19 +9611,19 @@ paths: content: application/json: example: - id: 84c61e76-bc4c-44b0-a1cb-da6b9c0bbe77 - key: ooeu43dsr6mkil2pie6bzsftvo3e + id: 1069f4b9-74f1-47d4-ba5d-4fb3ee2bfd4f + key: c4i33jfzxpnodvl4ehakk4hj8h62 filename: test.jpg content_type: image/jpeg metadata: {} service_name: test byte_size: 32326 checksum: QYeLAwqIj9HrwITqtTYaEw== - created_at: '2022-10-26T08:16:14.227Z' - signed_id: eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaEpJaWs0TkdNMk1XVTNOaTFpWXpSakxUUTBZakF0WVRGallpMWtZVFppT1dNd1ltSmxOemNHT2daRlZBPT0iLCJleHAiOm51bGwsInB1ciI6ImJsb2JfaWQifX0=--246d3aa2c63136e58eb921ccf61cdcad42c13c89 - attachable_sgid: BAh7CEkiCGdpZAY6BkVUSSJWZ2lkOi8vYmFja2VuZC9BY3RpdmVTdG9yYWdlOjpCbG9iLzg0YzYxZTc2LWJjNGMtNDRiMC1hMWNiLWRhNmI5YzBiYmU3Nz9leHBpcmVzX2luBjsAVEkiDHB1cnBvc2UGOwBUSSIPYXR0YWNoYWJsZQY7AFRJIg9leHBpcmVzX2F0BjsAVDA=--de0722eb055e949e0ceebf1ee04c4c57ca42f3d5 + created_at: '2023-11-22T14:48:39.702Z' + signed_id: eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaEpJaWt4TURZNVpqUmlPUzAzTkdZeExUUTNaRFF0WW1FMVpDMDBabUl6WldVeVltWmtOR1lHT2daRlZBPT0iLCJleHAiOm51bGwsInB1ciI6ImJsb2JfaWQifX0=--589127e75791fcfae51a9b35438ca6755cf35f78 + attachable_sgid: BAh7CEkiCGdpZAY6BkVUSSJWZ2lkOi8vYmFja2VuZC9BY3RpdmVTdG9yYWdlOjpCbG9iLzEwNjlmNGI5LTc0ZjEtNDdkNC1iYTVkLTRmYjNlZTJiZmQ0Zj9leHBpcmVzX2luBjsAVEkiDHB1cnBvc2UGOwBUSSIPYXR0YWNoYWJsZQY7AFRJIg9leHBpcmVzX2F0BjsAVDA=--509159a71a621b996d10db2d66ca0a3af5384b49 direct_upload: - url: http://www.example.com/backend/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDam9JYTJWNVNTSWhiMjlsZFRRelpITnlObTFyYVd3eWNHbGxObUo2YzJaMGRtOHpaUVk2QmtWVU9oRmpiMjUwWlc1MFgzUjVjR1ZKSWc5cGJXRm5aUzlxY0dWbkJqc0dWRG9UWTI5dWRHVnVkRjlzWlc1bmRHaHBBa1orT2cxamFHVmphM04xYlVraUhWRlpaVXhCZDNGSmFqbEljbmRKVkhGMFZGbGhSWGM5UFFZN0JsUTZFWE5sY25acFkyVmZibUZ0WlRvSmRHVnpkQT09IiwiZXhwIjoiMjAyMi0xMC0yNlQwODoyMToxNC4yMjlaIiwicHVyIjoiYmxvYl90b2tlbiJ9fQ==--b2a9b030e0802240b6343db2123fd082c19e86a2 + url: http://www.example.com/backend/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDam9JYTJWNVNTSWhZelJwTXpOcVpucDRjRzV2Wkhac05HVm9ZV3RyTkdocU9HZzJNZ1k2QmtWVU9oRmpiMjUwWlc1MFgzUjVjR1ZKSWc5cGJXRm5aUzlxY0dWbkJqc0dWRG9UWTI5dWRHVnVkRjlzWlc1bmRHaHBBa1orT2cxamFHVmphM04xYlVraUhWRlpaVXhCZDNGSmFqbEljbmRKVkhGMFZGbGhSWGM5UFFZN0JsUTZFWE5sY25acFkyVmZibUZ0WlRvSmRHVnpkQT09IiwiZXhwIjoiMjAyMy0xMS0yMlQxNDo1MzozOS43MDNaIiwicHVyIjoiYmxvYl90b2tlbiJ9fQ==--aacdccad53f8d7ca43b447903b49345543dae705 headers: Content-Type: image/jpeg schema: @@ -9746,8 +9885,6 @@ components: type: string updated_at: type: string - trusted: - type: boolean verified: type: boolean relationships: @@ -9844,8 +9981,6 @@ components: type: number category: type: string - trusted: - type: boolean verified: type: boolean created_at: @@ -9873,6 +10008,21 @@ components: favourite: type: boolean nullable: true + project_biodiversity_impact: + type: number + nullable: true + project_climate_impact: + type: number + nullable: true + project_water_impact: + type: number + nullable: true + project_community_impact: + type: number + nullable: true + project_total_impact: + type: number + nullable: true municipality_biodiversity_impact: type: number nullable: true @@ -10261,6 +10411,7 @@ components: required: - errors servers: +- url: "/" - url: "/backend" - url: "{scheme}://{host}" variables: From baf2a26f07692f248f66ede067d101d107b5ede1 Mon Sep 17 00:00:00 2001 From: yulia-bel Date: Wed, 22 Nov 2023 12:39:35 +0100 Subject: [PATCH 05/10] Update dependencies and swagger docs --- backend/Gemfile.lock | 146 ++++++++++++++++++++++--------------------- 1 file changed, 76 insertions(+), 70 deletions(-) diff --git a/backend/Gemfile.lock b/backend/Gemfile.lock index cd88ce612..fd6843ce6 100644 --- a/backend/Gemfile.lock +++ b/backend/Gemfile.lock @@ -9,47 +9,47 @@ GIT GEM remote: https://rubygems.org/ specs: - actioncable (7.0.4.3) - actionpack (= 7.0.4.3) - activesupport (= 7.0.4.3) + actioncable (7.0.8) + actionpack (= 7.0.8) + activesupport (= 7.0.8) nio4r (~> 2.0) websocket-driver (>= 0.6.1) - actionmailbox (7.0.4.3) - actionpack (= 7.0.4.3) - activejob (= 7.0.4.3) - activerecord (= 7.0.4.3) - activestorage (= 7.0.4.3) - activesupport (= 7.0.4.3) + actionmailbox (7.0.8) + actionpack (= 7.0.8) + activejob (= 7.0.8) + activerecord (= 7.0.8) + activestorage (= 7.0.8) + activesupport (= 7.0.8) mail (>= 2.7.1) net-imap net-pop net-smtp - actionmailer (7.0.4.3) - actionpack (= 7.0.4.3) - actionview (= 7.0.4.3) - activejob (= 7.0.4.3) - activesupport (= 7.0.4.3) + actionmailer (7.0.8) + actionpack (= 7.0.8) + actionview (= 7.0.8) + activejob (= 7.0.8) + activesupport (= 7.0.8) mail (~> 2.5, >= 2.5.4) net-imap net-pop net-smtp rails-dom-testing (~> 2.0) - actionpack (7.0.4.3) - actionview (= 7.0.4.3) - activesupport (= 7.0.4.3) - rack (~> 2.0, >= 2.2.0) + actionpack (7.0.8) + actionview (= 7.0.8) + activesupport (= 7.0.8) + rack (~> 2.0, >= 2.2.4) rack-test (>= 0.6.3) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.2.0) - actiontext (7.0.4.3) - actionpack (= 7.0.4.3) - activerecord (= 7.0.4.3) - activestorage (= 7.0.4.3) - activesupport (= 7.0.4.3) + actiontext (7.0.8) + actionpack (= 7.0.8) + activerecord (= 7.0.8) + activestorage (= 7.0.8) + activesupport (= 7.0.8) globalid (>= 0.6.0) nokogiri (>= 1.8.5) - actionview (7.0.4.3) - activesupport (= 7.0.4.3) + actionview (7.0.8) + activesupport (= 7.0.8) builder (~> 3.1) erubi (~> 1.4) rails-dom-testing (~> 2.0) @@ -59,25 +59,25 @@ GEM activemodel (>= 5.2.0) activestorage (>= 5.2.0) activesupport (>= 5.2.0) - activejob (7.0.4.3) - activesupport (= 7.0.4.3) + activejob (7.0.8) + activesupport (= 7.0.8) globalid (>= 0.3.6) - activemodel (7.0.4.3) - activesupport (= 7.0.4.3) - activerecord (7.0.4.3) - activemodel (= 7.0.4.3) - activesupport (= 7.0.4.3) + activemodel (7.0.8) + activesupport (= 7.0.8) + activerecord (7.0.8) + activemodel (= 7.0.8) + activesupport (= 7.0.8) activerecord-postgis-adapter (8.0.0) activerecord (~> 7.0.0) rgeo-activerecord (~> 7.0.0) - activestorage (7.0.4.3) - actionpack (= 7.0.4.3) - activejob (= 7.0.4.3) - activerecord (= 7.0.4.3) - activesupport (= 7.0.4.3) + activestorage (7.0.8) + actionpack (= 7.0.8) + activejob (= 7.0.8) + activerecord (= 7.0.8) + activesupport (= 7.0.8) marcel (~> 1.0) mini_mime (>= 1.1.0) - activesupport (7.0.4.3) + activesupport (7.0.8) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -125,7 +125,7 @@ GEM cuprite (0.13) capybara (>= 2.1, < 4) ferrum (~> 0.11.0) - date (3.3.3) + date (3.3.4) debug (1.5.0) irb (>= 1.3.6) reline (>= 0.2.7) @@ -205,8 +205,8 @@ GEM googleapis-common-protos-types (>= 1.0.6, < 2.a) googleauth (>= 0.17.0, < 2.a) grpc (~> 1.36) - globalid (1.1.0) - activesupport (>= 5.0) + globalid (1.2.1) + activesupport (>= 6.1) google-apis-core (0.4.2) addressable (~> 2.5, >= 2.5.1) googleauth (>= 0.16.2, < 2.a) @@ -272,15 +272,15 @@ GEM google-cloud-translate-v3 (0.4.2) gapic-common (>= 0.7, < 2.a) google-cloud-errors (~> 1.0) - google-protobuf (3.21.7) - google-protobuf (3.21.7-x86_64-darwin) - google-protobuf (3.21.7-x86_64-linux) + google-protobuf (3.25.1) + google-protobuf (3.25.1-x86_64-darwin) + google-protobuf (3.25.1-x86_64-linux) googleapis-common-protos (1.3.12) google-protobuf (~> 3.14) googleapis-common-protos-types (~> 1.2) grpc (~> 1.27) - googleapis-common-protos-types (1.3.1) - google-protobuf (~> 3.14) + googleapis-common-protos-types (1.10.0) + google-protobuf (~> 3.18) googleauth (1.1.3) faraday (>= 0.17.3, < 3.a) jwt (>= 1.4, < 3.0) @@ -288,8 +288,14 @@ GEM multi_json (~> 1.11) os (>= 0.9, < 2.0) signet (>= 0.16, < 2.a) - grpc (1.45.0) - google-protobuf (~> 3.19) + grpc (1.59.2) + google-protobuf (~> 3.24) + googleapis-common-protos-types (~> 1.0) + grpc (1.59.2-x86_64-darwin) + google-protobuf (~> 3.24) + googleapis-common-protos-types (~> 1.0) + grpc (1.59.2-x86_64-linux) + google-protobuf (~> 3.24) googleapis-common-protos-types (~> 1.0) grpc-google-iam-v1 (1.1.0) google-protobuf (~> 3.14) @@ -340,14 +346,14 @@ GEM msgpack (1.5.1) multi_json (1.15.0) multipart-post (2.1.1) - net-imap (0.3.4) + net-imap (0.4.6) date net-protocol net-pop (0.1.2) net-protocol - net-protocol (0.2.1) + net-protocol (0.2.2) timeout - net-smtp (0.3.3) + net-smtp (0.4.0) net-protocol nio4r (2.5.8) nokogiri (1.15.5) @@ -372,27 +378,27 @@ GEM activerecord (>= 5.2) activesupport (>= 5.2) public_suffix (5.0.4) - puma (6.0.0) + puma (6.4.0) nio4r (~> 2.0) raabro (1.4.0) racc (1.7.3) rack (2.2.8) rack-test (2.1.0) rack (>= 1.3) - rails (7.0.4.3) - actioncable (= 7.0.4.3) - actionmailbox (= 7.0.4.3) - actionmailer (= 7.0.4.3) - actionpack (= 7.0.4.3) - actiontext (= 7.0.4.3) - actionview (= 7.0.4.3) - activejob (= 7.0.4.3) - activemodel (= 7.0.4.3) - activerecord (= 7.0.4.3) - activestorage (= 7.0.4.3) - activesupport (= 7.0.4.3) + rails (7.0.8) + actioncable (= 7.0.8) + actionmailbox (= 7.0.8) + actionmailer (= 7.0.8) + actionpack (= 7.0.8) + actiontext (= 7.0.8) + actionview (= 7.0.8) + activejob (= 7.0.8) + activemodel (= 7.0.8) + activerecord (= 7.0.8) + activestorage (= 7.0.8) + activesupport (= 7.0.8) bundler (>= 1.15.0) - railties (= 7.0.4.3) + railties (= 7.0.8) rails-dom-testing (2.2.0) activesupport (>= 5.0.0) minitest @@ -400,9 +406,9 @@ GEM rails-html-sanitizer (1.6.0) loofah (~> 2.21) nokogiri (~> 1.14) - railties (7.0.4.3) - actionpack (= 7.0.4.3) - activesupport (= 7.0.4.3) + railties (7.0.8) + actionpack (= 7.0.8) + activesupport (= 7.0.8) method_source rake (>= 12.2) thor (~> 1.0) @@ -536,7 +542,7 @@ GEM railties (>= 6.0.0) test-prof (1.0.8) thor (1.3.0) - timeout (0.3.2) + timeout (0.4.1) traco (5.3.3) activerecord (>= 4.2) trailblazer-option (0.1.2) @@ -560,7 +566,7 @@ GEM crack (>= 0.3.2) hashdiff (>= 0.4.0, < 2.0.0) webrick (1.7.0) - websocket-driver (0.7.5) + websocket-driver (0.7.6) websocket-extensions (>= 0.1.0) websocket-extensions (0.1.5) xpath (3.2.0) From aafc7d1cc0389425759508207b918d632ed724f5 Mon Sep 17 00:00:00 2001 From: yulia-bel Date: Wed, 22 Nov 2023 13:00:02 +0100 Subject: [PATCH 06/10] Update swagger docs --- backend/swagger/v1/swagger.yaml | 2530 ++++++++++++++++--------------- 1 file changed, 1315 insertions(+), 1215 deletions(-) diff --git a/backend/swagger/v1/swagger.yaml b/backend/swagger/v1/swagger.yaml index c62aafac7..d483657ac 100644 --- a/backend/swagger/v1/swagger.yaml +++ b/backend/swagger/v1/swagger.yaml @@ -33,14 +33,14 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '200': description: success content: application/json: example: data: - id: 7a83a8b0-3e7f-4e47-bf61-1f4d8fe9130f + id: 3d9466df-2525-4f8e-9770-d06ebb800a0d type: investor attributes: name: Kutch-Spencer @@ -79,23 +79,23 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:47:47.663Z' + created_at: '2023-11-22T11:53:54.259Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: false relationships: owner: data: - id: 9741c01b-a2a8-4a80-8497-33317d066540 + id: 104895aa-6965-4b5d-8dae-09805ee825b4 type: user open_calls: data: - - id: 27577316-164b-41ea-a392-d0ddc5f08e82 + - id: 3de9652c-94c9-4051-a0f1-826154346d33 type: open_call schema: type: object @@ -118,14 +118,14 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '200': description: success content: application/json: example: data: - id: 8a72952d-ae32-4d12-9721-b6bb132c551d + id: 3c794ddd-3e01-4d81-b743-3530e9f0808e type: investor attributes: name: Name @@ -159,19 +159,19 @@ paths: language: es account_language: es review_status: unapproved - created_at: '2023-11-22T14:47:47.916Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:53:54.712Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: false relationships: owner: data: - id: 0a90c8e9-6b7e-417e-b66d-892121a7a25c + id: e171a902-096c-4ffd-a48a-74a381fcd65e type: user open_calls: data: [] @@ -336,14 +336,14 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '200': description: success content: application/json: example: data: - id: 4259f18a-db68-494d-9e1b-761f9b76c996 + id: c4f02709-0ea3-4c5f-9297-9264149d57fc type: investor attributes: name: Name @@ -377,19 +377,19 @@ paths: language: es account_language: es review_status: approved - created_at: '2023-11-22T14:47:48.160Z' + created_at: '2023-11-22T11:53:55.009Z' contact_email: contact@example.com contact_phone: '123456789' picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: false relationships: owner: data: - id: 858e1b58-2f47-44ea-a425-e2eb627272e7 + id: 7419c66b-51b1-4315-9988-fd250a9ad3b5 type: user open_calls: data: [] @@ -550,7 +550,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -566,7 +566,7 @@ paths: application/json: example: data: - - id: 56326cb5-e573-403f-ac35-131acb73011d + - id: cb407230-bfea-4f40-b565-04421c548f7b type: investor attributes: name: Bartoletti and Sons @@ -605,19 +605,19 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:47:48.530Z' + created_at: '2023-11-22T11:53:55.490Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: true relationships: owner: data: - id: cf49b25e-4ed5-402e-b4da-c792fd0bb6c5 + id: 2e46eca7-e340-4510-a64c-70611aa35116 type: user open_calls: data: [] @@ -689,7 +689,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -705,55 +705,55 @@ paths: application/json: example: data: - - id: 85f7ae8b-601b-4f3a-adb0-eeb71599073d + - id: ad8bfb1c-5c56-4a85-ae73-b7d4aa27d362 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:47:57.064Z' - updated_at: '2023-11-22T14:47:57.064Z' + created_at: '2023-11-22T11:54:06.296Z' + updated_at: '2023-11-22T11:54:06.296Z' relationships: open_call: data: - id: ce058875-a400-4a72-a1e7-33a983af91d7 + id: 814e2bcb-14ac-47f2-ad99-36bd0f3a8999 type: open_call project: data: - id: 4bd25cdb-46ed-4170-81d6-e97246d23734 + id: 710bd412-85d7-4bc7-be87-33192d84293f type: project project_developer: data: - id: c62d84ae-9ace-48a8-b004-40c4669f9a49 + id: efcced57-ad1a-4b54-8a87-5fb6b8b1a88f type: project_developer investor: data: - id: b7b25ba4-cf9c-4266-a331-b7cca9a2ef17 + id: 954738de-8855-4508-89f9-b1f3f1d104e8 type: investor - - id: 79459a06-00ef-4744-baf7-108c88e046fb + - id: 7ef84627-6049-4b22-8ae4-8ff511e7ba76 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:47:56.988Z' - updated_at: '2023-11-22T14:47:56.988Z' + created_at: '2023-11-22T11:54:06.208Z' + updated_at: '2023-11-22T11:54:06.208Z' relationships: open_call: data: - id: 7c2ae55f-888d-41e0-8291-9767cf732150 + id: e1f39fdc-67a4-4778-899e-6e95f7b35ed4 type: open_call project: data: - id: 57d21bd0-3020-4a4b-8cf0-a68f8c84f562 + id: 9b2370b6-c6b1-4d98-a211-ac3fbd9e9a4d type: project project_developer: data: - id: 2b4951e8-3cd5-4cd2-a937-9e43cc93fb59 + id: 38ae5815-8489-4cd6-b645-f5bbc12773ae type: project_developer investor: data: - id: b7b25ba4-cf9c-4266-a331-b7cca9a2ef17 + id: 954738de-8855-4508-89f9-b1f3f1d104e8 type: investor schema: type: object @@ -778,7 +778,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: forbidden content: @@ -794,32 +794,32 @@ paths: application/json: example: data: - id: 5c2a7d8d-ac71-4a18-b53b-02477722a440 + id: f43fc68a-1025-41fb-b066-a4af6dab62aa type: open_call_application attributes: message: This is message funded: false - created_at: '2023-11-22T14:47:59.336Z' - updated_at: '2023-11-22T14:47:59.336Z' + created_at: '2023-11-22T11:54:09.254Z' + updated_at: '2023-11-22T11:54:09.254Z' relationships: open_call: data: - id: d265f381-22b4-4450-ae65-70468b39c455 + id: d39a7a41-c53e-490d-8406-ec83daefd41c type: open_call project: data: - id: bc53cad2-592b-474e-9e52-79696b82d7f0 + id: c6109a2a-7914-4d51-8f66-3890f2844490 type: project project_developer: data: - id: 40db50db-2ee2-4973-856b-bc18445b62cc + id: e7ba700c-aca4-4331-bdc6-7f6f8f7ec793 type: project_developer investor: data: - id: 7a35aefc-a071-4a7e-9a48-00867b1801bd + id: de53d6d0-f27c-4721-9ab4-c9327eeffbd1 type: investor included: - - id: bc53cad2-592b-474e-9e52-79696b82d7f0 + - id: c6109a2a-7914-4d51-8f66-3890f2844490 type: project attributes: name: Project 1 @@ -863,7 +863,7 @@ paths: received_funding: true received_funding_amount_usd: '3000.0' received_funding_investor: Kutch-Spencer - relevant_links: + relevant_links: language: en account_language: es geometry: @@ -884,57 +884,63 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:47:59.276Z' - updated_at: '2023-11-22T14:47:59.276Z' - project_biodiversity_impact: - project_climate_impact: - project_water_impact: - project_community_impact: - project_total_impact: - municipality_biodiversity_impact: - municipality_climate_impact: - municipality_water_impact: - municipality_community_impact: - municipality_total_impact: - hydrobasin_biodiversity_impact: - hydrobasin_climate_impact: - hydrobasin_water_impact: - hydrobasin_community_impact: - hydrobasin_total_impact: - priority_landscape_biodiversity_impact: - priority_landscape_climate_impact: - priority_landscape_water_impact: - priority_landscape_community_impact: - priority_landscape_total_impact: + created_at: '2023-11-22T11:54:09.174Z' + updated_at: '2023-11-22T11:54:09.174Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: + municipality_biodiversity_impact: + municipality_climate_impact: + municipality_water_impact: + municipality_community_impact: + municipality_total_impact: + hydrobasin_biodiversity_impact: + hydrobasin_climate_impact: + hydrobasin_water_impact: + hydrobasin_community_impact: + hydrobasin_total_impact: + priority_landscape_biodiversity_impact: + priority_landscape_climate_impact: + priority_landscape_water_impact: + priority_landscape_community_impact: + priority_landscape_total_impact: impact_calculated: false + positive_financial_returns: Enim repellat pariatur. Earum modi + eos. + last_year_sales_revenue: Enim repellat pariatur. + climate_change_risks_details: Enim repellat pariatur. Earum modi + eos. + climate_change_risks_identified: true latitude: 39.21309022641362 longitude: -5.87810037515931 favourite: false - funded: + funded: relationships: project_developer: data: - id: 40db50db-2ee2-4973-856b-bc18445b62cc + id: e7ba700c-aca4-4331-bdc6-7f6f8f7ec793 type: project_developer country: data: - id: 8e502d40-5036-438c-a537-cbd546651865 + id: 18f3fc90-28a5-49ad-bca1-d9e0fffef615 type: location municipality: data: - id: 7716f1cd-52fc-4e1f-9a34-5fea91a7a1cd + id: 5c6ddd85-4de8-4077-b2c7-2a5a71404a01 type: location department: data: - id: 0432f1b0-41dd-4635-8d4c-4fea86efceea + id: 7d96cbb6-7664-4426-adc5-f75094a8fb37 type: location priority_landscape: - data: + data: involved_project_developers: data: [] project_images: data: [] - - id: 40db50db-2ee2-4973-856b-bc18445b62cc + - id: e7ba700c-aca4-4331-bdc6-7f6f8f7ec793 type: project_developer attributes: name: Kutch-Spencer @@ -959,31 +965,31 @@ paths: account_language: es entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:47:59.241Z' + created_at: '2023-11-22T11:54:09.128Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: false relationships: owner: data: - id: af9e9e5a-eb79-4ecc-bfd1-a072ed28410c + id: 80a4991d-150c-4460-96a6-98a2e9bc63b9 type: user projects: data: - - id: bc53cad2-592b-474e-9e52-79696b82d7f0 + - id: c6109a2a-7914-4d51-8f66-3890f2844490 type: project involved_projects: data: [] priority_landscapes: data: - - id: 79b949b4-2ab2-4d8a-8649-6f150f080955 + - id: 82d1b681-390f-49a6-8d45-b0f4224ca6b1 type: location - - id: 7bfa887c-fdb3-4b2f-85d4-853bf56497e9 + - id: 6909fc4a-24ce-4ece-af8f-6eaa6705026d type: location schema: type: object @@ -1046,7 +1052,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '404': description: Not Found content: @@ -1071,30 +1077,30 @@ paths: application/json: example: data: - id: 7eb09816-6bb0-478c-af0e-9ea34dc8f2f8 + id: 26354c60-c8de-472e-8d6a-5db5f4f5c046 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:48:01.456Z' - updated_at: '2023-11-22T14:48:01.456Z' + created_at: '2023-11-22T11:54:11.963Z' + updated_at: '2023-11-22T11:54:11.963Z' relationships: open_call: data: - id: 372833ad-5a7b-42e9-a7b1-c32b0f82f025 + id: 409f934b-7733-4207-81ac-9e3ae3772fde type: open_call project: data: - id: f88e13c6-1029-4176-82ba-c705f45f9610 + id: 146a3cb5-ad5f-4627-a853-94d79e27bb15 type: project project_developer: data: - id: b0be0ab2-8938-45b0-800a-de93948e4457 + id: cd182eeb-b84b-44a6-9ba3-bb46263cb16b type: project_developer investor: data: - id: 4479f1c6-b0cd-48e5-904a-6e4b816bd90e + id: 5a5fc079-3423-4e80-a647-a5020bb859ec type: investor schema: type: object @@ -1123,7 +1129,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '404': description: Not Found content: @@ -1148,29 +1154,29 @@ paths: application/json: example: data: - id: 5ecfb845-8683-4788-b533-62df562862c8 + id: e7b9bbd3-d403-4ab4-84b4-6c983a4dece7 type: open_call_application attributes: message: This is updated text funded: false - created_at: '2023-11-22T14:48:02.343Z' - updated_at: '2023-11-22T14:48:02.357Z' + created_at: '2023-11-22T11:54:13.044Z' + updated_at: '2023-11-22T11:54:13.061Z' relationships: open_call: data: - id: 40a87bd6-8924-46d5-b6b4-f82c1a13a626 + id: 626c1744-19b8-4765-9cb0-1c567f4406ec type: open_call project: data: - id: 3b78d5ac-0c06-4b70-9635-1e58db830dc3 + id: 87bdf10b-220c-44bd-b33f-e1120d79e8da type: project project_developer: data: - id: 333421db-476d-44d7-a7de-c80dabdf282e + id: 147a9322-6a90-479b-8379-7d15c01779fd type: project_developer investor: data: - id: 8c53ed4c-8319-454f-9164-a58f4b7d7a68 + id: 229bc148-0f54-41bf-8e50-3232fc1bca03 type: investor schema: type: object @@ -1216,7 +1222,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -1256,7 +1262,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '404': description: Not Found content: @@ -1305,7 +1311,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '404': description: Not Found content: @@ -1365,7 +1371,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -1381,7 +1387,7 @@ paths: application/json: example: data: - - id: d9df0c55-4a9d-4ee8-baea-741d483844c0 + - id: 75c87c5c-0d53-4523-bc50-9f85a23c0a6b type: open_call attributes: name: Open call 5 @@ -1401,38 +1407,38 @@ 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:48:06.516Z' + closing_at: '2024-09-22T11:54:18.217Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T14:48:06.518Z' - updated_at: '2023-11-22T14:48:06.524Z' + created_at: '2023-11-22T11:54:18.219Z' + updated_at: '2023-11-22T11:54:18.226Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: false relationships: investor: data: - id: 241c6db0-eb6c-4764-beb2-cd4e4fc82872 + id: cc41d9c9-ec6c-42b5-8037-1930a97f250a type: investor country: data: - id: 693b3326-e937-426a-91ef-5155c6ccf87c + id: ef7fc4a3-1785-4f7c-807d-5399962402a8 type: location municipality: data: - id: efc2ea7d-e795-4c0f-b05a-b0e4e3221708 + id: 0c2636f6-c6eb-4776-b591-03de17b87c0b type: location department: data: - id: c5c3d035-5b09-406d-b026-e9c18536ed28 + id: 75d9256c-db16-42f7-a42b-ca45e22f8d96 type: location - - id: 0aeb75f5-38a9-4b9d-8a00-de516591fccd + - id: d571e7b5-3cda-4e80-b354-999e69cbe9f0 type: open_call attributes: name: Open call 4 @@ -1452,38 +1458,38 @@ 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:48:06.496Z' + closing_at: '2024-09-22T11:54:18.195Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T14:48:06.498Z' - updated_at: '2023-11-22T14:48:06.504Z' + created_at: '2023-11-22T11:54:18.197Z' + updated_at: '2023-11-22T11:54:18.204Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: false relationships: investor: data: - id: 241c6db0-eb6c-4764-beb2-cd4e4fc82872 + id: cc41d9c9-ec6c-42b5-8037-1930a97f250a type: investor country: data: - id: 5ac78a5c-1d32-4bbc-88d6-8f27e3819836 + id: ed36a61c-41d5-4949-8a2e-6853db57b2fd type: location municipality: data: - id: 868ca61f-c570-4f91-a5be-40377a6aaf08 + id: 5ba6adfe-7b41-4593-86fe-afee575afada type: location department: data: - id: c660fbea-428f-4da7-922c-bd17ed54262f + id: 892c69d6-1417-4f34-8044-cd27cef63fa5 type: location - - id: 93831121-7894-43c0-8414-e3723f12a811 + - id: 810a3537-fb9c-49a9-b4d5-b1ef2bfcf9f7 type: open_call attributes: name: Open call 3 @@ -1503,38 +1509,38 @@ 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:48:06.476Z' + closing_at: '2024-09-22T11:54:18.172Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T14:48:06.478Z' - updated_at: '2023-11-22T14:48:06.484Z' + created_at: '2023-11-22T11:54:18.175Z' + updated_at: '2023-11-22T11:54:18.182Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: false relationships: investor: data: - id: 241c6db0-eb6c-4764-beb2-cd4e4fc82872 + id: cc41d9c9-ec6c-42b5-8037-1930a97f250a type: investor country: data: - id: 4f08b74f-d164-4ee0-ade8-72a6490494ae + id: 41d1a4ef-b648-42e0-a754-ec48ee253a8f type: location municipality: data: - id: 0da12f91-3d04-4d8d-b676-b995a83418ba + id: e7537ae0-10a1-4fee-be1a-9f5f2fdea436 type: location department: data: - id: 6f992602-6939-4e71-ac0b-94d9a49b3b21 + id: 69628334-a358-4109-8d81-271444a0dde1 type: location - - id: 79fe3040-83ba-41dd-a4f5-ded0ff4ac56e + - id: cbd0dc32-702c-44d4-a379-46c202b57611 type: open_call attributes: name: Open call 2 @@ -1554,38 +1560,38 @@ 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:48:06.452Z' + closing_at: '2024-09-22T11:54:18.150Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T14:48:06.454Z' - updated_at: '2023-11-22T14:48:06.460Z' + created_at: '2023-11-22T11:54:18.152Z' + updated_at: '2023-11-22T11:54:18.159Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: false relationships: investor: data: - id: 241c6db0-eb6c-4764-beb2-cd4e4fc82872 + id: cc41d9c9-ec6c-42b5-8037-1930a97f250a type: investor country: data: - id: 9072e677-9017-4088-8c00-c6d90e7a6b18 + id: 103361e1-5103-44d5-b94a-a925fd333343 type: location municipality: data: - id: 1690d338-4926-47e6-8c71-ec2117a2467c + id: efbb9fb0-4235-481f-9470-011cea1ec519 type: location department: data: - id: 19caa0da-51de-4d76-8a94-6db45bcaaec4 + id: 43a376fc-786f-4393-861b-25e989dbefaf type: location - - id: f341a066-d38a-4dff-af2d-5c666eaeaa6b + - id: 90098cbd-91aa-4db0-8775-327d3ed8d38c type: open_call attributes: name: Yellow Banana @@ -1605,38 +1611,38 @@ 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:48:06.433Z' + closing_at: '2024-09-22T11:54:18.127Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T14:48:06.435Z' - updated_at: '2023-11-22T14:48:06.440Z' + created_at: '2023-11-22T11:54:18.129Z' + updated_at: '2023-11-22T11:54:18.136Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: false relationships: investor: data: - id: 241c6db0-eb6c-4764-beb2-cd4e4fc82872 + id: cc41d9c9-ec6c-42b5-8037-1930a97f250a type: investor country: data: - id: 29df4bd6-a2d9-4620-921f-7d6ae3150995 + id: 3943ca74-eb10-4861-910c-c189285bcc7c type: location municipality: data: - id: dc372cd9-067a-4fb4-b6b9-ce633f3f4e4a + id: 5b6037d1-ea83-40e1-8f57-3e8aea6b0d6f type: location department: data: - id: f4d0e701-a08d-422b-a3dc-af11b095d8b0 + id: 9533b264-83da-4983-aa4c-788eaebfed2e type: location - - id: 1a74bead-5ecf-49a8-acb5-3fa68132d6ea + - id: 5ce6e959-2e6c-4162-bf79-fd347bd36dde type: open_call attributes: name: Open call 1 @@ -1656,36 +1662,36 @@ 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:48:06.414Z' + closing_at: '2024-09-22T11:54:18.105Z' status: draft language: en account_language: es verified: false - created_at: '2023-11-22T14:48:06.416Z' - updated_at: '2023-11-22T14:48:06.422Z' + created_at: '2023-11-22T11:54:18.107Z' + updated_at: '2023-11-22T11:54:18.114Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: false relationships: investor: data: - id: 241c6db0-eb6c-4764-beb2-cd4e4fc82872 + id: cc41d9c9-ec6c-42b5-8037-1930a97f250a type: investor country: data: - id: 0ca41717-4b95-4c5a-a7a1-4b2e555305da + id: 11557d58-e6ac-4703-b13b-e3ffbdde86c7 type: location municipality: data: - id: 6377b2f5-83c7-49ca-8a36-ef7015276625 + id: 81a7bff5-deab-4f97-9a13-04b44abda9a2 type: location department: data: - id: d13f8761-05bb-4da4-97e1-6228570e77c3 + id: dd5aa5f4-d8c4-411e-9199-c731659e40ec type: location schema: type: object @@ -1710,7 +1716,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -1726,7 +1732,7 @@ paths: application/json: example: data: - id: 696af8b5-05e1-4f64-93da-5e8779fa8d01 + id: 14435dae-da3f-4173-86ed-9e782eff7073 type: open_call attributes: name: Open Call Name @@ -1742,36 +1748,36 @@ paths: funding_exclusions: Open Call Funding Exclusions impact_description: Open Call Impact Description maximum_funding_per_project: 100000 - closing_at: '2023-11-23T14:48:08.896Z' + closing_at: '2023-11-23T11:54:21.112Z' status: draft language: es account_language: es verified: false - created_at: '2023-11-22T14:48:08.908Z' - updated_at: '2023-11-22T14:48:08.913Z' + created_at: '2023-11-22T11:54:21.127Z' + updated_at: '2023-11-22T11:54:21.134Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: false relationships: investor: data: - id: 0bd36e85-bb89-46b5-aed5-abd0ad92bba3 + id: 12fea537-5706-4d7b-86cb-ab3abd783cd6 type: investor country: data: - id: 1ac023b7-165b-446f-9d65-23512c38117e + id: 78b80f9c-dac7-4c55-9a66-2779925b1ec1 type: location municipality: data: - id: 131d0841-445b-4840-9c00-c286a679aab0 + id: 6a7a405a-1459-412e-8ae7-2d4992c8057b type: location department: data: - id: ded2d748-b996-481a-9e85-d0d844d98fcd + id: 694e0c9e-85d7-40f8-8400-4e74140ecfa7 type: location schema: type: object @@ -1887,7 +1893,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '404': description: Not Found content: @@ -1912,7 +1918,7 @@ paths: application/json: example: data: - id: 03f70874-7bd8-4f1a-8664-7ecacda3183c + id: df89f887-e756-406b-b01e-6c3cb29a4978 type: open_call attributes: name: Updated Open Call Name @@ -1927,36 +1933,36 @@ 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:48:09.916Z' + closing_at: '2023-12-02T11:54:22.513Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T14:48:09.893Z' - updated_at: '2023-11-22T14:48:09.932Z' + created_at: '2023-11-22T11:54:22.483Z' + updated_at: '2023-11-22T11:54:22.533Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: false relationships: investor: data: - id: 2e8c3f51-c9b6-488f-a429-703f7e5afd45 + id: bddebc42-ac48-488b-88fe-8cf6db579715 type: investor country: data: - id: 305c7a81-7a2b-4dc1-a31a-1d830a46c2fa + id: 9a63b78f-4a8d-44a2-9a07-5bee79b28280 type: location municipality: data: - id: 807cd82c-d994-482a-b261-9a35e239f4a1 + id: 9fe959a6-bc2c-48cc-920b-4ad6990c7d5b type: location department: data: - id: 8901203b-3d26-49e6-bd5f-216ae754515b + id: 59bb2196-7ee1-47a8-9cce-833ca6a246ac type: location schema: type: object @@ -2058,7 +2064,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '404': description: Not Found content: @@ -2125,7 +2131,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -2141,7 +2147,7 @@ paths: application/json: example: data: - - id: e4feb197-7f74-460a-8f3b-8f1e7dc6e9f8 + - id: 7f96ba92-be2d-49fa-8d23-f1a66b7fce0c type: open_call attributes: name: Open call 1 @@ -2161,36 +2167,36 @@ 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:48:11.901Z' + closing_at: '2024-09-22T11:54:25.054Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:48:11.903Z' - updated_at: '2023-11-22T14:48:11.908Z' + created_at: '2023-11-22T11:54:25.056Z' + updated_at: '2023-11-22T11:54:25.063Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: true relationships: investor: data: - id: d55ce0fc-f7f1-4cce-99a6-068ed6e5cfd2 + id: 3aaf468a-4839-46b2-a7ee-5cf8287f5e16 type: investor country: data: - id: d513a3e4-8050-4e93-9288-c8b05ba0f368 + id: a4441adf-4324-4418-a99e-f467fa71789b type: location municipality: data: - id: c5e0fdc6-947d-4261-8df6-3ee4a6c5b769 + id: 6a0c47d3-096a-4d33-823d-491fe5c83ae0 type: location department: data: - id: 0aec29d2-cd65-42a2-bdad-41e08c65eb1f + id: cd46394e-75de-4a2b-a2c7-ea99a38c74ca type: location meta: page: 1 @@ -2243,14 +2249,14 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '200': description: success content: application/json: example: data: - id: 89d8426e-2aec-4bea-b8a7-6c7c436feea4 + id: 7a77197b-21b9-486c-800c-da5de58ef1eb type: project_developer attributes: name: Kutch-Spencer @@ -2275,35 +2281,35 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:48:13.460Z' + created_at: '2023-11-22T11:54:26.995Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: false relationships: owner: data: - id: 533c74e9-fb2f-4305-b2ad-a309fbc6166a + id: eaf429bb-c959-4139-9381-c10c586d8626 type: user projects: data: - - id: 24386a45-a47c-4578-9756-988bbd2b3f36 + - id: ca8f127e-0704-4be4-a64e-48088ab02b62 type: project involved_projects: data: - - id: b074a253-3c85-44d8-8539-ba3d88bea961 + - id: 76f21d8d-2364-4f86-85af-43ede6e38376 type: project - - id: fffb54c0-62b1-44ab-86bd-ea825bb9b8b4 + - id: adaab63d-2aa1-450a-83f2-d66ae004e342 type: project priority_landscapes: data: - - id: 3d8c899b-a84e-4c03-9d50-5b28b9de1bf2 + - id: 8c21a575-c963-42eb-a5b9-5712bd95fbb5 type: location - - id: 7bf48b68-d09e-40f4-8e1e-cd16cd08599f + - id: a233f66b-4c7c-4d12-aaa4-60763a28dd2b type: location schema: type: object @@ -2326,14 +2332,14 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '200': description: success content: application/json: example: data: - id: c7a4421e-d7c1-40d1-953f-3254ef358543 + id: edcdf7e1-d733-46f9-904b-83612210a57a type: project_developer attributes: name: Name @@ -2356,19 +2362,19 @@ paths: account_language: es entity_legal_registration_number: '564823570' review_status: unapproved - created_at: '2023-11-22T14:48:13.915Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:27.597Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: false relationships: owner: data: - id: f95b0f67-9ab0-4d29-bf4f-39437b9fa6b9 + id: 6f67cb35-4c2f-42d7-8de5-2cb5df02ac79 type: user projects: data: [] @@ -2376,7 +2382,7 @@ paths: data: [] priority_landscapes: data: - - id: a19ee830-d9e0-4566-ba3b-0f4b9064463f + - id: db63ea0d-a820-4257-b3cc-42b64b11cbf3 type: location schema: type: object @@ -2495,14 +2501,14 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '200': description: success content: application/json: example: data: - id: dbb11986-af11-4e04-bc54-ff596a7d09f1 + id: 256ea419-ac7b-4c7a-9d59-f3939009fe9d type: project_developer attributes: name: Name @@ -2525,19 +2531,19 @@ paths: account_language: es entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:48:14.221Z' + created_at: '2023-11-22T11:54:28.004Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: false relationships: owner: data: - id: 59c623de-9666-410f-a329-2971e2edd5c9 + id: 6ea511cc-e1cd-46e5-9d69-b5d2f5c3e029 type: user projects: data: [] @@ -2545,7 +2551,7 @@ paths: data: [] priority_landscapes: data: - - id: c701da02-f66b-4328-8831-ffe3aae9cb84 + - id: 73aedf13-4c69-4afa-9cc0-5ad45703e0dd type: location schema: type: object @@ -2660,7 +2666,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -2676,7 +2682,7 @@ paths: application/json: example: data: - - id: d19ad41d-1a0c-4536-9178-8584f105e1ed + - id: 8cce4c4b-1ddc-41e0-bb0a-9eee48f4ce19 type: project_developer attributes: name: Bartoletti and Sons @@ -2701,19 +2707,19 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:48:14.675Z' + created_at: '2023-11-22T11:54:28.569Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: analyzed: false - small: - medium: - original: + small: + medium: + original: favourite: true relationships: owner: data: - id: 7611ec76-9e0b-404f-8453-adbbae7cae9f + id: f7e85398-4dfa-4fed-a510-eacbdea66bbd type: user projects: data: [] @@ -2721,9 +2727,9 @@ paths: data: [] priority_landscapes: data: - - id: 181e6b8e-1b50-4cfb-bcd1-b2b2b663c49d + - id: f98bfb7d-377c-4744-9fcf-1ad193977a60 type: location - - id: df0d0c8b-e579-480e-b3a8-42bfe82efc96 + - id: baf1c6f9-68ad-4e48-a4f6-96d82f8c3ea6 type: location meta: page: 1 @@ -2782,7 +2788,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -2798,7 +2804,7 @@ paths: application/json: example: data: - - id: 7d957f70-d90a-43f7-a55a-3ba0e7e1c0ed + - id: 937c95d4-7b33-4e4f-9481-0db979289c83 type: project attributes: name: Draft project @@ -2842,7 +2848,7 @@ paths: received_funding: true received_funding_amount_usd: '3000.0' received_funding_investor: Hilpert, Waters and Johnston - relevant_links: + relevant_links: language: en account_language: es geometry: @@ -2863,57 +2869,63 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:48:15.460Z' - updated_at: '2023-11-22T14:48:15.460Z' - project_biodiversity_impact: - project_climate_impact: - project_water_impact: - project_community_impact: - project_total_impact: - municipality_biodiversity_impact: - municipality_climate_impact: - municipality_water_impact: - municipality_community_impact: - municipality_total_impact: - hydrobasin_biodiversity_impact: - hydrobasin_climate_impact: - hydrobasin_water_impact: - hydrobasin_community_impact: - hydrobasin_total_impact: - priority_landscape_biodiversity_impact: - priority_landscape_climate_impact: - priority_landscape_water_impact: - priority_landscape_community_impact: - priority_landscape_total_impact: + created_at: '2023-11-22T11:54:29.693Z' + updated_at: '2023-11-22T11:54:29.693Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: + municipality_biodiversity_impact: + municipality_climate_impact: + municipality_water_impact: + municipality_community_impact: + municipality_total_impact: + hydrobasin_biodiversity_impact: + hydrobasin_climate_impact: + hydrobasin_water_impact: + hydrobasin_community_impact: + hydrobasin_total_impact: + priority_landscape_biodiversity_impact: + priority_landscape_climate_impact: + priority_landscape_water_impact: + priority_landscape_community_impact: + priority_landscape_total_impact: impact_calculated: false + positive_financial_returns: Dolores fugiat nesciunt. Ut laborum + dolores. + last_year_sales_revenue: Dolores fugiat nesciunt. + climate_change_risks_details: Dolores fugiat nesciunt. Ut laborum + dolores. + climate_change_risks_identified: true latitude: 39.21309022641362 longitude: -5.87810037515931 favourite: false - funded: + funded: relationships: project_developer: data: - id: ad0c02bb-7baa-4045-bae2-a978a3a2e8fb + id: 95a03d9a-cacf-4e64-a585-0bbb1af907ca type: project_developer country: data: - id: 3c4cdb98-0279-40e0-8291-0fc67830f164 + id: 7e0196ef-34ca-4030-80bc-1979bb42d678 type: location municipality: data: - id: e7e3019e-e726-4fc4-ac19-bcf6d701d125 + id: 57bf48e3-262b-4aee-8cd8-ce2c00568909 type: location department: data: - id: '02521920-abb2-44c9-b956-48f8eface8d7' + id: f9e30a9c-236d-4e86-9a4d-fa78ec377c54 type: location priority_landscape: - data: + data: involved_project_developers: data: [] project_images: data: [] - - id: c1f7b9b3-2d5a-46c0-b563-55725e21b2c8 + - id: 9e92250c-8ad4-4c60-9dcc-8e3a11ec8986 type: project attributes: name: This PDs Project Amazing @@ -2957,7 +2969,7 @@ paths: received_funding: true received_funding_amount_usd: '3000.0' received_funding_investor: Bartoletti and Sons - relevant_links: + relevant_links: language: en account_language: es geometry: @@ -2978,57 +2990,63 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:48:15.383Z' - updated_at: '2023-11-22T14:48:15.383Z' - project_biodiversity_impact: - project_climate_impact: - project_water_impact: - project_community_impact: - project_total_impact: - municipality_biodiversity_impact: - municipality_climate_impact: - municipality_water_impact: - municipality_community_impact: - municipality_total_impact: - hydrobasin_biodiversity_impact: - hydrobasin_climate_impact: - hydrobasin_water_impact: - hydrobasin_community_impact: - hydrobasin_total_impact: - priority_landscape_biodiversity_impact: - priority_landscape_climate_impact: - priority_landscape_water_impact: - priority_landscape_community_impact: - priority_landscape_total_impact: + created_at: '2023-11-22T11:54:29.589Z' + updated_at: '2023-11-22T11:54:29.589Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: + municipality_biodiversity_impact: + municipality_climate_impact: + municipality_water_impact: + municipality_community_impact: + municipality_total_impact: + hydrobasin_biodiversity_impact: + hydrobasin_climate_impact: + hydrobasin_water_impact: + hydrobasin_community_impact: + hydrobasin_total_impact: + priority_landscape_biodiversity_impact: + priority_landscape_climate_impact: + priority_landscape_water_impact: + priority_landscape_community_impact: + priority_landscape_total_impact: impact_calculated: false + positive_financial_returns: Placeat commodi libero. Quo recusandae + repellat. + last_year_sales_revenue: Placeat commodi libero. + climate_change_risks_details: Placeat commodi libero. Quo recusandae + repellat. + climate_change_risks_identified: true latitude: 39.21309022641362 longitude: -5.87810037515931 favourite: false - funded: + funded: relationships: project_developer: data: - id: ad0c02bb-7baa-4045-bae2-a978a3a2e8fb + id: 95a03d9a-cacf-4e64-a585-0bbb1af907ca type: project_developer country: data: - id: 81251e63-5b68-45ef-9002-bdb416a3b4ad + id: 4238dc25-d6ea-46e8-b889-c721ee830031 type: location municipality: data: - id: aa01ddac-e095-4344-9169-3df1f65a9403 + id: 522631d1-cafd-4394-8c1d-9a9c7ed8b9ee type: location department: data: - id: 282a90ea-51ab-4d4b-85a0-05e4a9b37b83 + id: f3fc85f1-3909-474f-baf2-621829aa9217 type: location priority_landscape: - data: + data: involved_project_developers: data: [] project_images: data: [] - - id: b4945069-bcba-45f2-a707-45a945dc32b8 + - id: 00a0de3d-b912-45f5-9055-48e651fe31c6 type: project attributes: name: This PDs Project Awesome @@ -3072,7 +3090,7 @@ paths: received_funding: true received_funding_amount_usd: '3000.0' received_funding_investor: Kutch-Spencer - relevant_links: + relevant_links: language: en account_language: es geometry: @@ -3093,52 +3111,58 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:48:15.357Z' - updated_at: '2023-11-22T14:48:15.357Z' - project_biodiversity_impact: - project_climate_impact: - project_water_impact: - project_community_impact: - project_total_impact: - municipality_biodiversity_impact: - municipality_climate_impact: - municipality_water_impact: - municipality_community_impact: - municipality_total_impact: - hydrobasin_biodiversity_impact: - hydrobasin_climate_impact: - hydrobasin_water_impact: - hydrobasin_community_impact: - hydrobasin_total_impact: - priority_landscape_biodiversity_impact: - priority_landscape_climate_impact: - priority_landscape_water_impact: - priority_landscape_community_impact: - priority_landscape_total_impact: + created_at: '2023-11-22T11:54:29.558Z' + updated_at: '2023-11-22T11:54:29.558Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: + municipality_biodiversity_impact: + municipality_climate_impact: + municipality_water_impact: + municipality_community_impact: + municipality_total_impact: + hydrobasin_biodiversity_impact: + hydrobasin_climate_impact: + hydrobasin_water_impact: + hydrobasin_community_impact: + hydrobasin_total_impact: + priority_landscape_biodiversity_impact: + priority_landscape_climate_impact: + priority_landscape_water_impact: + priority_landscape_community_impact: + priority_landscape_total_impact: impact_calculated: false + positive_financial_returns: Enim repellat pariatur. Earum modi + eos. + last_year_sales_revenue: Enim repellat pariatur. + climate_change_risks_details: Enim repellat pariatur. Earum modi + eos. + climate_change_risks_identified: true latitude: 39.21309022641362 longitude: -5.87810037515931 favourite: false - funded: + funded: relationships: project_developer: data: - id: ad0c02bb-7baa-4045-bae2-a978a3a2e8fb + id: 95a03d9a-cacf-4e64-a585-0bbb1af907ca type: project_developer country: data: - id: 7aaf0419-26a5-4d93-8a2f-6b9ac6ccc84e + id: a3772ba0-3399-465e-9da3-56202a92c227 type: location municipality: data: - id: 97b8369b-9f2a-4baf-aac2-4d28c77c31de + id: 7cd6c2cd-9de6-461e-a062-674b40590d84 type: location department: data: - id: 6291f1a1-7e4a-4232-9457-68ab2796cf89 + id: 7a3f3978-972d-4482-bc51-f204a172d760 type: location priority_landscape: - data: + data: involved_project_developers: data: [] project_images: @@ -3166,7 +3190,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -3182,7 +3206,7 @@ paths: application/json: example: data: - id: 27679c0d-db64-4d25-a359-23eb340fc6fd + id: f462132b-7f4d-4413-9c1f-0e88a2d1d4af type: project attributes: name: Project Name @@ -3239,85 +3263,89 @@ paths: - 1.5274297752414188 properties: {} verified: false - created_at: '2023-11-22T14:48:17.013Z' - updated_at: '2023-11-22T14:48:17.013Z' - project_biodiversity_impact: - project_climate_impact: - project_water_impact: - project_community_impact: - project_total_impact: - municipality_biodiversity_impact: - municipality_climate_impact: - municipality_water_impact: - municipality_community_impact: - municipality_total_impact: - hydrobasin_biodiversity_impact: - hydrobasin_climate_impact: - hydrobasin_water_impact: - hydrobasin_community_impact: - hydrobasin_total_impact: - priority_landscape_biodiversity_impact: - priority_landscape_climate_impact: - priority_landscape_water_impact: - priority_landscape_community_impact: - priority_landscape_total_impact: + created_at: '2023-11-22T11:54:31.587Z' + updated_at: '2023-11-22T11:54:31.587Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: + municipality_biodiversity_impact: + municipality_climate_impact: + municipality_water_impact: + municipality_community_impact: + municipality_total_impact: + hydrobasin_biodiversity_impact: + hydrobasin_climate_impact: + hydrobasin_water_impact: + hydrobasin_community_impact: + hydrobasin_total_impact: + priority_landscape_biodiversity_impact: + priority_landscape_climate_impact: + priority_landscape_water_impact: + priority_landscape_community_impact: + priority_landscape_total_impact: impact_calculated: false + positive_financial_returns: + last_year_sales_revenue: + climate_change_risks_details: + climate_change_risks_identified: false latitude: 1.1581373021971106 longitude: -77.16867902747148 favourite: false - funded: + funded: relationships: project_developer: data: - id: b718b494-3b00-4023-a4f4-d3868798b91c + id: b115dc4f-d03b-4c19-97ed-afd9bea9df9b type: project_developer country: data: - id: 9405ad31-d2e4-4c36-9255-e13cb1a3267f + id: efb4b696-fe6e-4705-89b3-1ab9f0bcd913 type: location municipality: data: - id: 52db25c8-0ed3-430f-9add-c5bb271d2e4b + id: 0cd53a94-5294-4b98-9c2e-ab63dc0b9e86 type: location department: data: - id: 1bcd29cf-7698-440e-b407-0859881491ab + id: 228e2715-c5cd-4bcc-a782-51a2fff65a48 type: location priority_landscape: - data: + data: involved_project_developers: data: - - id: 81ef409a-a32a-4a88-8a57-5cefd10e8507 + - id: 44186792-cea4-49fa-8c02-703f43e9cac6 type: project_developer - - id: 1bfa869b-b011-4701-8665-88ae9508d314 + - id: 3856dc72-b0e6-49e3-b8bb-96d829fd5931 type: project_developer project_images: data: - - id: 65b6798f-933f-461d-ae09-382a429870c0 + - id: 501e8d2d-9ea0-4782-9a56-3e92a4d74809 type: project_image - - id: 84f2ea4a-7fc4-4e27-acc8-58f03e9eca2e + - id: f953da55-8346-4a8a-87da-76a603b1bbe9 type: project_image included: - - id: 65b6798f-933f-461d-ae09-382a429870c0 + - id: 501e8d2d-9ea0-4782-9a56-3e92a4d74809 type: project_image attributes: cover: true - created_at: '2023-11-22T14:48:17.017Z' + created_at: '2023-11-22T11:54:31.592Z' file: analyzed: false - small: - medium: - original: - - id: 84f2ea4a-7fc4-4e27-acc8-58f03e9eca2e + small: + medium: + original: + - id: f953da55-8346-4a8a-87da-76a603b1bbe9 type: project_image attributes: cover: false - created_at: '2023-11-22T14:48:17.021Z' + created_at: '2023-11-22T11:54:31.597Z' file: analyzed: false - small: - medium: - original: + small: + medium: + original: schema: type: object properties: @@ -3392,6 +3420,14 @@ paths: type: number received_funding_investor: type: string + positive_financial_returns: + type: string + last_year_sales_revenue: + type: string + climate_change_risks_details: + type: string + climate_change_risks_identified: + type: boolean replicability: type: string sustainability: @@ -3534,7 +3570,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '404': description: Not Found content: @@ -3559,7 +3595,7 @@ paths: application/json: example: data: - id: d8d94fdd-38e8-4b6f-8b54-41fca9397924 + id: 39aa05c6-f25f-484d-aaf9-7a947edc4161 type: project attributes: name: Updated Project Name @@ -3603,61 +3639,65 @@ paths: - 1.0 - 2.0 verified: false - created_at: '2023-11-22T14:48:19.751Z' - updated_at: '2023-11-22T14:48:19.899Z' - project_biodiversity_impact: - project_climate_impact: - project_water_impact: - project_community_impact: - project_total_impact: - municipality_biodiversity_impact: - municipality_climate_impact: - municipality_water_impact: - municipality_community_impact: - municipality_total_impact: - hydrobasin_biodiversity_impact: - hydrobasin_climate_impact: - hydrobasin_water_impact: - hydrobasin_community_impact: - hydrobasin_total_impact: - priority_landscape_biodiversity_impact: - priority_landscape_climate_impact: - priority_landscape_water_impact: - priority_landscape_community_impact: - priority_landscape_total_impact: + created_at: '2023-11-22T11:54:35.431Z' + updated_at: '2023-11-22T11:54:35.645Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: + municipality_biodiversity_impact: + municipality_climate_impact: + municipality_water_impact: + municipality_community_impact: + municipality_total_impact: + hydrobasin_biodiversity_impact: + hydrobasin_climate_impact: + hydrobasin_water_impact: + hydrobasin_community_impact: + hydrobasin_total_impact: + priority_landscape_biodiversity_impact: + priority_landscape_climate_impact: + priority_landscape_water_impact: + priority_landscape_community_impact: + priority_landscape_total_impact: impact_calculated: false + positive_financial_returns: Updated financial returns data + last_year_sales_revenue: Updated year sales revenues + climate_change_risks_details: Updated climate risk details + climate_change_risks_identified: true latitude: 2.0 longitude: 1.0 favourite: false - funded: + funded: relationships: project_developer: data: - id: 2eb9508a-5240-46c7-a664-193890c93ea8 + id: f5b34f11-a031-4b80-bc9c-70c638832c6a type: project_developer country: data: - id: a9f59756-ca62-41fa-8999-0cea2e97766b + id: f3aaa408-2a9c-4ed1-bd32-406e15f2e4bb type: location municipality: data: - id: a9b4d2bb-d7d8-405c-aad2-20bdeb81290b + id: 426f222b-30c1-4d5b-8fe3-a0d46e86c7bf type: location department: data: - id: b1545415-9a6a-4ce9-bd1e-0ee8847be0e5 + id: da11dadb-604d-4d06-98fe-692fcb425ca8 type: location priority_landscape: - data: + data: involved_project_developers: data: - - id: bfbb3e01-d5bf-4928-98f1-6772c5b72704 + - id: cb455a75-6d8a-4ee8-a594-1444ceecb490 type: project_developer - - id: 9248434b-955d-4ef1-93d8-615bd7ffe6a2 + - id: 5ff3348e-c459-497a-a64e-8282529d1ba2 type: project_developer project_images: data: - - id: 4ac5d174-bb3c-4c04-a959-3a0e1f7ad8da + - id: 5c5d0bd3-6fbf-4fde-95b1-99fa520544c5 type: project_image schema: type: object @@ -3730,6 +3770,14 @@ paths: type: number received_funding_investor: type: string + positive_financial_returns: + type: string + last_year_sales_revenue: + type: string + climate_change_risks_details: + type: string + climate_change_risks_identified: + type: boolean replicability: type: string sustainability: @@ -3871,7 +3919,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '404': description: Not Found content: @@ -3938,7 +3986,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -3954,7 +4002,7 @@ paths: application/json: example: data: - - id: 29bc9117-4a87-487e-aff2-520867d08967 + - id: da442775-2b7c-46d4-a2c3-77505bbabd5f type: project attributes: name: Project 1 @@ -3998,7 +4046,7 @@ paths: received_funding: true received_funding_amount_usd: '3000.0' received_funding_investor: Kutch-Spencer - relevant_links: + relevant_links: language: en account_language: en geometry: @@ -4019,52 +4067,58 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:48:25.877Z' - updated_at: '2023-11-22T14:48:25.877Z' - project_biodiversity_impact: - project_climate_impact: - project_water_impact: - project_community_impact: - project_total_impact: - municipality_biodiversity_impact: - municipality_climate_impact: - municipality_water_impact: - municipality_community_impact: - municipality_total_impact: - hydrobasin_biodiversity_impact: - hydrobasin_climate_impact: - hydrobasin_water_impact: - hydrobasin_community_impact: - hydrobasin_total_impact: - priority_landscape_biodiversity_impact: - priority_landscape_climate_impact: - priority_landscape_water_impact: - priority_landscape_community_impact: - priority_landscape_total_impact: + created_at: '2023-11-22T11:54:43.352Z' + updated_at: '2023-11-22T11:54:43.352Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: + municipality_biodiversity_impact: + municipality_climate_impact: + municipality_water_impact: + municipality_community_impact: + municipality_total_impact: + hydrobasin_biodiversity_impact: + hydrobasin_climate_impact: + hydrobasin_water_impact: + hydrobasin_community_impact: + hydrobasin_total_impact: + priority_landscape_biodiversity_impact: + priority_landscape_climate_impact: + priority_landscape_water_impact: + priority_landscape_community_impact: + priority_landscape_total_impact: impact_calculated: false + positive_financial_returns: Enim repellat pariatur. Earum modi + eos. + last_year_sales_revenue: Enim repellat pariatur. + climate_change_risks_details: Enim repellat pariatur. Earum modi + eos. + climate_change_risks_identified: true latitude: 39.21309022641362 longitude: -5.87810037515931 favourite: true - funded: + funded: relationships: project_developer: data: - id: 8c4858a1-6ae9-44b7-af67-f5364c66cda3 + id: 5d4e39bf-1041-4745-ad32-05c08e16078b type: project_developer country: data: - id: c00322d5-b62e-45d0-b245-75e5bb7f917e + id: f5ce0ff1-6259-4f01-8144-97daac10b8ea type: location municipality: data: - id: c07b106d-9215-4338-9f99-97e848072a02 + id: c6f04304-98b0-4259-8fd2-06282a8a5dda type: location department: data: - id: 16515023-5ece-4344-9f30-10fb338a9c09 + id: 9321723d-75cc-4f1b-b6e0-1077da9e6072 type: location priority_landscape: - data: + data: involved_project_developers: data: [] project_images: @@ -4114,7 +4168,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '404': description: Not Found content: @@ -4163,7 +4217,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '404': description: Not Found content: @@ -4212,41 +4266,41 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '200': description: success content: application/json: example: data: - - id: 28f94c82-50a4-479d-851f-1dba64981db1 + - id: 92ec5161-3829-497a-aa9c-b6d8f4483c89 type: user attributes: first_name: Dawna last_name: Block email: dawna.block@example.org role: light - created_at: '2023-11-22T14:48:27.908Z' + created_at: '2023-11-22T11:54:45.966Z' ui_language: en account_language: en otp_required_for_login: false confirmed: true approved: true - invitation: + invitation: owner: true avatar: - analyzed: - small: - medium: - original: - - id: 04e01f5d-4e9a-4096-a200-7f7a69a9cd96 + analyzed: + small: + medium: + original: + - id: bb5b16c3-97cf-4f67-b361-f25e21dae93a type: user attributes: first_name: Desmond last_name: Herzog email: desmond_herzog@example.org role: light - created_at: '2023-11-22T14:48:27.922Z' + created_at: '2023-11-22T11:54:45.984Z' ui_language: en account_language: en otp_required_for_login: false @@ -4255,30 +4309,30 @@ paths: invitation: completed owner: false avatar: - analyzed: - small: - medium: - original: - - id: 8dc5134a-2156-4647-b944-ce5acdd6dd75 + analyzed: + small: + medium: + original: + - id: 554d46d3-c1d4-4628-91ea-cae77d8b4a55 type: user attributes: first_name: Raymon last_name: Runte email: runte_raymon@example.org role: light - created_at: '2023-11-22T14:48:27.926Z' + created_at: '2023-11-22T11:54:45.989Z' ui_language: en - account_language: + account_language: otp_required_for_login: false confirmed: true - approved: + approved: invitation: waiting owner: false avatar: - analyzed: - small: - medium: - original: + analyzed: + small: + medium: + original: schema: type: object properties: @@ -4308,7 +4362,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: forbidden content: @@ -4345,7 +4399,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -4361,26 +4415,26 @@ paths: application/json: example: data: - id: 30870028-953f-42c4-bb89-facca94a4e5c + id: b02336e8-19d5-4ae5-a342-70ebafba48ed type: user attributes: first_name: Desmond last_name: Herzog email: desmond_herzog@example.org role: light - created_at: '2023-11-22T14:48:28.779Z' + created_at: '2023-11-22T11:54:47.086Z' ui_language: en account_language: en otp_required_for_login: false confirmed: true approved: true - invitation: + invitation: owner: true avatar: - analyzed: - small: - medium: - original: + analyzed: + small: + medium: + original: schema: type: object properties: @@ -4392,7 +4446,7 @@ paths: application/json: example: errors: - - title: Couldn't find User with 'id'=1d054564-af6e-4b38-aa4c-3077f108de3a + - title: Couldn't find User with 'id'=ea94cbe2-d8a8-4a49-8ccd-c32baf23571c [WHERE "users"."account_id" = $1] schema: "$ref": "#/components/schemas/errors" @@ -4413,7 +4467,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -4447,7 +4501,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -4511,37 +4565,37 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '200': description: success content: application/json: example: data: - - id: 49f3d20d-cc8b-4670-b972-ed2b59512d58 + - id: 92e3a201-5859-4796-a940-9eb68ae1daec type: background_job_event attributes: status: enqueued arguments: - test@test.test queue_name: default - priority: + priority: executions: 1 - message: - created_at: '2023-11-12T14:48:30.479Z' - updated_at: '2023-11-22T14:48:30.479Z' - - id: 638d020a-d765-45ae-a80c-023f4dd5c5bf + message: + created_at: '2023-11-12T11:54:49.349Z' + updated_at: '2023-11-22T11:54:49.349Z' + - id: 9fc0e9d8-251b-4a1b-ab19-29c5e8ec4726 type: background_job_event attributes: status: crashed arguments: - test@test.test queue_name: default - priority: + priority: executions: 1 - message: - created_at: '2023-11-22T14:48:30.478Z' - updated_at: '2023-11-22T14:48:30.478Z' + message: + created_at: '2023-11-22T11:54:49.348Z' + updated_at: '2023-11-22T11:54:49.348Z' meta: page: 1 per_page: 10 @@ -4602,26 +4656,26 @@ paths: application/json: example: data: - id: 56024d9c-0188-4464-97ae-78307068de09 + id: a89ac9a4-e1f4-4984-a03f-0660fb02957d type: user attributes: first_name: Dawna last_name: Block email: user@example.com role: light - created_at: '2023-11-22T14:48:30.608Z' + created_at: '2023-11-22T11:54:49.549Z' ui_language: en - account_language: + account_language: otp_required_for_login: false confirmed: true - approved: - invitation: + approved: + invitation: owner: false avatar: - analyzed: - small: - medium: - original: + analyzed: + small: + medium: + original: schema: type: object properties: @@ -5127,7 +5181,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '200': description: success content: @@ -5169,7 +5223,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -5215,7 +5269,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Open Call is from not approved investor content: @@ -5260,7 +5314,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -5306,7 +5360,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '200': description: success content: @@ -5348,7 +5402,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -5394,7 +5448,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '200': description: success content: @@ -5436,7 +5490,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -5544,7 +5598,7 @@ paths: application/json: example: data: - - id: 6e54aa72-fcb8-4ba2-9596-f840f6a69518 + - id: 590cfc68-c182-43ce-a91c-149ffcede7ac type: investor attributes: name: Bartoletti and Sons @@ -5582,23 +5636,23 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:48:33.590Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:53.327Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: b839c541-00e5-4fc9-bfa9-2762f427401a + id: 304ac8e9-ec1b-47a4-96c2-b7305c52de01 type: user open_calls: data: [] - - id: 9c372064-6c2e-4200-a4e7-535aab121935 + - id: 53425fb5-e42c-4bb5-b37e-890aebaab0f1 type: investor attributes: name: Becker LLC @@ -5636,23 +5690,23 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:48:33.726Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:53.453Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: b76c8483-77d0-469a-b8b5-da9371be0e82 + id: b1c001ac-609b-44ac-909e-2c1e74f64a64 type: user open_calls: data: [] - - id: ef7ae989-b6d2-4545-b73d-91b8097ae70c + - id: 560718f2-ee3c-4088-8fc4-a62f5e2e11c4 type: investor attributes: name: Gleichner-Bartoletti @@ -5689,23 +5743,23 @@ paths: language: pt account_language: pt review_status: approved - created_at: '2023-11-22T14:48:33.803Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:53.536Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: 99f7ad87-9818-4725-911d-0c9e4085ace6 + id: 6d51f43d-008c-4af2-8622-225f207e7dc7 type: user open_calls: data: [] - - id: 90696f22-e252-45ef-a7dc-a552b1700a2b + - id: 4b9b18d4-a6f5-4be8-96b5-493503d43f99 type: investor attributes: name: Hane, Lehner and Goyette @@ -5743,23 +5797,23 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:48:33.606Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:53.352Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: 9b1e0d4f-9668-4939-8bdf-30617888306e + id: 3bc48488-f5e0-4241-a785-1bcf6c220e09 type: user open_calls: data: [] - - id: 28de751e-c176-4cf5-b4f7-d7b79a7d3b8c + - id: 458b95a1-358a-4b21-ad6e-c834a4f824fd type: investor attributes: name: Hilpert, Waters and Johnston @@ -5797,23 +5851,23 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:48:33.620Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:53.378Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: ab21545d-052e-46a2-9a57-227c100fdf16 + id: 8c49971f-9d82-41d0-9e8c-4f47417f332e type: user open_calls: data: [] - - id: f569b4e8-b6d1-4a4a-a0e2-ac1fb5fb0f68 + - id: 7422a9ed-7883-4880-865b-ce3b07d407b8 type: investor attributes: name: Jacobson, Fritsch and Stanton @@ -5851,23 +5905,23 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:48:33.635Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:53.403Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: 4313f1a1-8f32-40fc-8964-fe305ff6e257 + id: a93ac9d9-91e2-4f97-96c4-c5e4f199a3cc type: user open_calls: data: [] - - id: ce5e1001-0804-4354-b16a-ad67377c1a65 + - id: 9e35d2c9-6b9f-4885-9ec0-8705e4f49852 type: investor attributes: name: Keebler, Kub and Zemlak @@ -5905,23 +5959,23 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:48:33.653Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:53.428Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: 13ca7ef1-4615-47d1-8c72-38a1dd4a4789 + id: b90e6756-0c18-4fc9-af58-cb9ab5bb86a3 type: user open_calls: data: [] - - id: ae1424d6-a3a3-40e6-8a62-75442d027437 + - id: 7db62576-c598-4c27-b437-1734d8485c56 type: investor attributes: name: Kutch-Spencer @@ -5958,19 +6012,19 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:48:33.559Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:53.275Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: 586ef12f-b0c4-48d8-8550-307324d2e4d4 + id: '00428939-e93e-4867-acc7-3bd518a8589c' type: user open_calls: data: [] @@ -6036,7 +6090,7 @@ paths: application/json: example: data: - id: ae1424d6-a3a3-40e6-8a62-75442d027437 + id: 7db62576-c598-4c27-b437-1734d8485c56 type: investor attributes: name: Kutch-Spencer @@ -6073,19 +6127,19 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T14:48:33.559Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:53.275Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: 586ef12f-b0c4-48d8-8550-307324d2e4d4 + id: '00428939-e93e-4867-acc7-3bd518a8589c' type: user open_calls: data: [] @@ -6165,7 +6219,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '403': description: Forbidden content: @@ -6212,21 +6266,21 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '200': description: success content: application/json: example: data: - id: 7caa338b-88ed-47a7-8e2e-aa57c53a84cb + id: ee4bad2b-7c06-4773-b266-f52a8e62bf32 type: user attributes: first_name: Dawna last_name: Block email: dawna.block@example.org role: light - created_at: '2023-11-22T14:48:34.721Z' + created_at: '2023-11-22T11:54:54.760Z' ui_language: es account_language: pt otp_required_for_login: false @@ -6235,10 +6289,10 @@ paths: invitation: completed owner: false avatar: - analyzed: - small: - medium: - original: + analyzed: + small: + medium: + original: schema: type: object properties: @@ -6312,63 +6366,63 @@ paths: application/json: example: data: - - id: 4218118d-54c9-4498-9633-753a3742e9b2 + - id: 5bc831c1-e7cc-49cc-9995-def5eb8a25d0 type: location attributes: name: Canada location_type: country - code: - created_at: '2023-11-22T14:48:34.921Z' + code: + created_at: '2023-11-22T11:54:54.977Z' relationships: parent: - data: - - id: af0de59f-291c-4919-aa2e-2aa72706924f + data: + - id: f916ecf7-648b-45f3-8258-10fc175a83bb type: location attributes: name: Papua New Guinea location_type: department - code: - created_at: '2023-11-22T14:48:34.923Z' + code: + created_at: '2023-11-22T11:54:54.980Z' relationships: parent: data: - id: 4218118d-54c9-4498-9633-753a3742e9b2 + id: 5bc831c1-e7cc-49cc-9995-def5eb8a25d0 type: location - - id: b0810578-fc36-4400-863f-a8ee09136b8d + - id: 6d1fa0ac-a114-467b-a361-4f0e5e72fe09 type: location attributes: name: Jamaica location_type: municipality - code: - created_at: '2023-11-22T14:48:34.925Z' + code: + created_at: '2023-11-22T11:54:54.983Z' relationships: parent: data: - id: af0de59f-291c-4919-aa2e-2aa72706924f + id: f916ecf7-648b-45f3-8258-10fc175a83bb type: location - - id: bef44dc5-0598-4da2-9b47-b0cb40c07e89 + - id: 63d04e42-0f4e-4cc0-9878-841dc7409114 type: location attributes: name: Libyan Arab Jamahiriya location_type: municipality - code: - created_at: '2023-11-22T14:48:34.927Z' + code: + created_at: '2023-11-22T11:54:54.985Z' relationships: parent: data: - id: af0de59f-291c-4919-aa2e-2aa72706924f + id: f916ecf7-648b-45f3-8258-10fc175a83bb type: location - - id: eb9c350f-4633-4b42-86e4-a756934ca259 + - id: 5620ebff-ad0e-4edf-a8dc-99947595b787 type: location attributes: name: India location_type: municipality - code: - created_at: '2023-11-22T14:48:34.928Z' + code: + created_at: '2023-11-22T11:54:54.987Z' relationships: parent: data: - id: af0de59f-291c-4919-aa2e-2aa72706924f + id: f916ecf7-648b-45f3-8258-10fc175a83bb type: location schema: type: object @@ -6417,17 +6471,17 @@ paths: application/json: example: data: - id: b0810578-fc36-4400-863f-a8ee09136b8d + id: 6d1fa0ac-a114-467b-a361-4f0e5e72fe09 type: location attributes: name: Jamaica location_type: municipality - code: - created_at: '2023-11-22T14:48:34.925Z' + code: + created_at: '2023-11-22T11:54:54.983Z' relationships: parent: data: - id: af0de59f-291c-4919-aa2e-2aa72706924f + id: f916ecf7-648b-45f3-8258-10fc175a83bb type: location schema: type: object @@ -6512,7 +6566,7 @@ paths: application/json: example: data: - - id: 3bdf5a22-953b-4efc-a1e5-610efee6d3cb + - id: 8cec6482-70c2-442d-a406-91d5c9af22f4 type: open_call attributes: name: Open call 1 @@ -6532,38 +6586,38 @@ 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:48:35.062Z' + closing_at: '2024-09-22T11:54:55.174Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:48:35.064Z' - updated_at: '2023-11-22T14:48:35.069Z' + created_at: '2023-11-22T11:54:55.177Z' + updated_at: '2023-11-22T11:54:55.186Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: investor: data: - id: e1153a10-dc66-4803-b4f9-e87d566010a1 + id: 1e7ad8c7-d2d8-4c06-b032-bbf8cf118682 type: investor country: data: - id: 214a14cf-8d73-485f-a1fb-98da56df66a6 + id: d5184684-dcce-4892-ab67-250dc2e3cd57 type: location municipality: data: - id: 8b5fd2c4-3bab-4013-8653-7043a4f7ba68 + id: 44d6ae09-b162-4d3b-83eb-e9197d32f2fb type: location department: data: - id: ebb910ca-f288-4744-8168-58cf11bcc7c4 + id: eab71d32-123d-4179-b7d8-b882e2c7bd3c type: location - - id: c5caf478-44f4-4b28-a743-74f3282a891d + - id: 88b756f3-8d2a-49e8-ae2a-3c515a1c19cd type: open_call attributes: name: Open call 2 @@ -6583,38 +6637,38 @@ 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:48:35.098Z' + closing_at: '2024-09-22T11:54:55.226Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:48:35.100Z' - updated_at: '2023-11-22T14:48:35.106Z' + created_at: '2023-11-22T11:54:55.228Z' + updated_at: '2023-11-22T11:54:55.235Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: investor: data: - id: 554cb5d8-d80d-4a5a-8562-2a53c0edf7c9 + id: 640d657e-17be-4aaa-b7ef-4007dcb9d383 type: investor country: data: - id: 7301ff4c-1974-47d1-8f25-79e1879ac15e + id: c0e795fa-7596-44d4-b770-d108a3c1d613 type: location municipality: data: - id: 63c24390-79bd-4413-b765-6cd9b9937a10 + id: 9f0e1b4e-580a-4927-9821-e70c6cbd1dfd type: location department: data: - id: 463823ac-34f2-4c80-8c3a-e682efe5df66 + id: ec2a9cfc-ae08-4b97-a155-33dd0ea0c7f3 type: location - - id: 70cba31c-1300-4fa7-96d2-66294e525e74 + - id: d1a0436a-0314-4337-b528-ee722b60c82a type: open_call attributes: name: Open call 3 @@ -6634,38 +6688,38 @@ 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:48:35.136Z' + closing_at: '2024-09-22T11:54:55.274Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:48:35.138Z' - updated_at: '2023-11-22T14:48:35.144Z' + created_at: '2023-11-22T11:54:55.276Z' + updated_at: '2023-11-22T11:54:55.283Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: investor: data: - id: f8f3022b-5f61-4c82-aec6-214bfdc33c35 + id: c70ac54c-0dd9-42a9-aa8d-9f4325fade41 type: investor country: data: - id: df059055-547d-42ca-ad45-24cb5f775c2e + id: df078013-2c32-4634-bfae-a5ff8c96595f type: location municipality: data: - id: 28c5bbe5-6297-402e-97c2-5e9adc55b285 + id: 3e3db004-6de2-46a5-8dfb-ab68cd0f4afb type: location department: data: - id: 741575e2-7eb5-4947-8fec-5971b0479d0e + id: aee57185-e1c9-4aee-b420-3183383788bb type: location - - id: 8fdda509-884b-4e85-9782-9a459db32de6 + - id: 30bd04f3-a5fc-442c-b73d-c8367532b4e9 type: open_call attributes: name: Open call 4 @@ -6685,38 +6739,38 @@ 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:48:35.175Z' + closing_at: '2024-09-22T11:54:55.321Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:48:35.177Z' - updated_at: '2023-11-22T14:48:35.182Z' + created_at: '2023-11-22T11:54:55.323Z' + updated_at: '2023-11-22T11:54:55.331Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: investor: data: - id: 89da67f7-d62b-45bf-894c-e917b1bc3335 + id: da71649c-3245-486d-a55d-d1ad547f218b type: investor country: data: - id: f1d45607-9932-49c4-b92e-b86f5b1e26ff + id: 4cdba9fa-20db-4acc-9be9-0fa054115c65 type: location municipality: data: - id: fb2eed2d-2c92-4b7d-b488-32376a53c042 + id: '0279934f-acd1-44cc-84d9-93c819b6ca04' type: location department: data: - id: 8ec38132-4b81-435b-ace4-83049755b480 + id: 2dd46c57-6158-4306-ae5a-538ce1315a16 type: location - - id: 0cbe936b-5c56-4868-9c62-6fdd86d37d59 + - id: 5e2f7d09-c7cf-4ce4-ba7a-37e8fde7ebf7 type: open_call attributes: name: Open call 5 @@ -6736,38 +6790,38 @@ 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:48:35.212Z' + closing_at: '2024-09-22T11:54:55.369Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:48:35.214Z' - updated_at: '2023-11-22T14:48:35.220Z' + created_at: '2023-11-22T11:54:55.372Z' + updated_at: '2023-11-22T11:54:55.379Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: investor: data: - id: 6b133134-3867-475e-aeb6-10e24157a5b9 + id: ef60039f-03bc-4a18-b974-b1251f5b10fa type: investor country: data: - id: 05327263-7369-4c15-bbef-4e2eb5efba77 + id: 8689ba8d-517a-4af2-a351-3b071af0896c type: location municipality: data: - id: d29d13a6-cec9-4623-9cda-07b8992f9726 + id: 1e93b490-27a6-4777-ba22-e27bf6afaaad type: location department: data: - id: 2c2a2418-ce1a-420f-9d37-61374c1dd569 + id: 7a46f266-d4b9-4e2f-9f6d-65918343deae type: location - - id: 6a936e65-8cfb-41cd-a012-b9f3b35617ce + - id: 02c910e1-f1c4-4d6f-88b3-073f736b1bfe type: open_call attributes: name: Open call 6 @@ -6787,38 +6841,38 @@ 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:48:35.257Z' + closing_at: '2024-09-22T11:54:55.418Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:48:35.259Z' - updated_at: '2023-11-22T14:48:35.265Z' + created_at: '2023-11-22T11:54:55.420Z' + updated_at: '2023-11-22T11:54:55.427Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: investor: data: - id: 558efbcb-8055-4e02-ab6f-d094e04cc484 + id: 3c6d50d2-acdb-427b-8831-afaab6e805e9 type: investor country: data: - id: 2e809227-cfb0-4059-bae6-73f047b9448c + id: 55f167ad-34c8-439b-a3c7-a0821dda924a type: location municipality: data: - id: 15313c69-a9a3-4d25-91e4-2bb5203f40a7 + id: 73af4e44-714f-48a9-9fbe-3072008b11b4 type: location department: data: - id: c079638f-08b0-4a43-9d58-f7e82f64b92e + id: e7556662-6c0e-4850-ae7a-edf19eda568e type: location - - id: 12633d0a-ec3e-4bec-a1ef-092911c93733 + - id: 9c444398-1513-44a5-9b64-fe65f3c6517b type: open_call attributes: name: Open call 8 @@ -6837,38 +6891,38 @@ 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:48:35.367Z' + closing_at: '2024-09-22T11:54:55.543Z' status: launched language: en account_language: pt verified: false - created_at: '2023-11-22T14:48:35.369Z' - updated_at: '2023-11-22T14:48:35.375Z' + created_at: '2023-11-22T11:54:55.546Z' + updated_at: '2023-11-22T11:54:55.553Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: investor: data: - id: 93eb23ef-a324-4725-9baa-96c028c5539e + id: 169c6c0c-0dfa-434a-843d-8fb4cc21f1f0 type: investor country: data: - id: 3aa6fb06-fc1e-404a-afe7-e9d2c084ff5a + id: c439cdcf-c9b8-4fe5-829c-67a18d4db662 type: location municipality: data: - id: a539e55d-cb35-4e49-87ca-12e2595632b1 + id: 3373b49a-4f7f-4ace-a25e-329b8467c470 type: location department: data: - id: e2052c63-4636-49e5-944e-74317551a8b9 + id: fa8d3a03-bfdb-45c8-b525-230abccd8445 type: location - - id: 11c424e0-728e-4681-9db1-6a4f226686c7 + - id: 58608f24-89b7-47a5-8ed8-9862c335bb5c type: open_call attributes: name: Yellow Banana @@ -6888,36 +6942,36 @@ 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:48:35.025Z' + closing_at: '2024-09-22T11:54:55.125Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:48:35.027Z' - updated_at: '2023-11-22T14:48:35.032Z' + created_at: '2023-11-22T11:54:55.128Z' + updated_at: '2023-11-22T11:54:55.135Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: investor: data: - id: 48acc730-49dc-4596-b289-71f580b51699 + id: c218489c-126f-4904-bad0-484b692a6a9c type: investor country: data: - id: b57b3ef0-7dd6-4954-9554-ad738e10b87d + id: a1691b92-feb4-4388-ba99-d9e0b2881754 type: location municipality: data: - id: 0cc2f662-a3ca-4af0-995c-182bb237def8 + id: d83e6db6-f297-48de-a3e0-61b05e2c762f type: location department: data: - id: 2c380721-1653-4dae-8d88-88ed28fc85b2 + id: 1c53ffa2-8e9b-466b-aaae-ff26ea2dbc86 type: location meta: page: 1 @@ -6987,7 +7041,7 @@ paths: application/json: example: data: - id: 11c424e0-728e-4681-9db1-6a4f226686c7 + id: 58608f24-89b7-47a5-8ed8-9862c335bb5c type: open_call attributes: name: Yellow Banana @@ -7007,36 +7061,36 @@ 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:48:35.025Z' + closing_at: '2024-09-22T11:54:55.125Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T14:48:35.027Z' - updated_at: '2023-11-22T14:48:35.032Z' + created_at: '2023-11-22T11:54:55.128Z' + updated_at: '2023-11-22T11:54:55.135Z' open_call_applications_count: 0 picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: investor: data: - id: 48acc730-49dc-4596-b289-71f580b51699 + id: c218489c-126f-4904-bad0-484b692a6a9c type: investor country: data: - id: b57b3ef0-7dd6-4954-9554-ad738e10b87d + id: a1691b92-feb4-4388-ba99-d9e0b2881754 type: location municipality: data: - id: 0cc2f662-a3ca-4af0-995c-182bb237def8 + id: d83e6db6-f297-48de-a3e0-61b05e2c762f type: location department: data: - id: 2c380721-1653-4dae-8d88-88ed28fc85b2 + id: 1c53ffa2-8e9b-466b-aaae-ff26ea2dbc86 type: location schema: type: object @@ -7127,7 +7181,7 @@ paths: application/json: example: data: - - id: f7a995b5-0543-4e6e-ae2e-0e17320e0126 + - id: b098c6e7-8ed6-421e-900f-3a176d8e683e type: project_developer attributes: name: Bartoletti and Sons @@ -7152,33 +7206,33 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:48:35.763Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:56.052Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: 0b43f1e1-4ed7-4104-906c-de1fff6a16ad + id: aee2133d-41ce-4b74-8af5-c2b5a8799de8 type: user projects: data: - - id: 455cc01f-6544-4a76-8f0a-b3ba0ee56a5e + - id: c05e0871-cb1f-45e0-bbc2-30b069a5e3e0 type: project involved_projects: data: [] priority_landscapes: data: - - id: 720aba31-7652-4ef7-ad6c-2d853f4c8ee8 + - id: 37029d56-d833-4297-a239-f380f59533e1 type: location - - id: 8e670327-2a36-4e1e-8519-39133b709c40 + - id: e2d960df-4595-4c9d-95bd-c7513e9bc11e type: location - - id: 1f51f4d4-0be2-4ad3-8f1f-bc8bbc68d335 + - id: c9b689cc-a5c3-4e43-a1da-9766bf00ffea type: project_developer attributes: name: Becker LLC @@ -7203,19 +7257,19 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:48:36.039Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:56.325Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: 6cab7db4-3efd-4bab-bef6-59599458be3d + id: 89705806-c4fc-4d7a-9321-58c3918a9642 type: user projects: data: [] @@ -7223,11 +7277,11 @@ paths: data: [] priority_landscapes: data: - - id: 3937393c-92d1-4a4e-b727-fc24f76bcdd0 + - id: 5d7c9f09-f3e7-4283-81cc-0277865c4de1 type: location - - id: 70cb9382-64c6-46d2-b2c6-d93bfd4b6f7f + - id: '05673190-fb6a-48d1-91de-a43059b49698' type: location - - id: 4b18d586-3667-4d3c-8edd-e1d589177c79 + - id: 1c03b08d-f080-46bb-83d7-8efc2a6661b3 type: project_developer attributes: name: Hane, Lehner and Goyette @@ -7252,33 +7306,33 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:48:35.813Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:56.110Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: ff302468-47f7-4163-88b0-00be2b7df976 + id: e5a8c49d-f844-4014-93c7-292ddc42df5b type: user projects: data: - - id: 830004ec-8756-4af0-ba68-56863a3d930d + - id: aa1cfc32-b173-4452-9ea4-29067d4ced4c type: project involved_projects: data: [] priority_landscapes: data: - - id: 58ac822d-c106-4c0a-b03d-997cf43d3fea + - id: 06dd351e-6bae-4503-b57f-aef0063ccac5 type: location - - id: 74fd5380-253e-4571-aabc-0dc052140514 + - id: d8759d70-7863-49d6-80f6-7ac4766e796d type: location - - id: 7ab1a62c-3da9-4720-9584-7271408b3c37 + - id: 305ab44a-d91b-479d-9886-1da18e29f7f4 type: project_developer attributes: name: Hilpert, Waters and Johnston @@ -7303,19 +7357,19 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:48:35.903Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:56.227Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: ca9844be-5b56-4d6a-97f0-b63649544705 + id: 0a4070b5-6da5-40bb-b18d-98fd8f47d05a type: user projects: data: [] @@ -7323,11 +7377,11 @@ paths: data: [] priority_landscapes: data: - - id: 3165aa2d-ea61-4020-88ea-a60fbd63d9a8 + - id: edae1dc2-af66-4ee6-9d5d-8f73e6170a17 type: location - - id: 51b2695c-fa42-4e51-9970-1c0ed481a484 + - id: d5a7e733-1517-436a-9ddb-ba8db782f68c type: location - - id: 52072fcd-7cb5-48a7-a663-44951ef118d4 + - id: bc08a8a5-3471-4df0-8595-5eb94ecdf904 type: project_developer attributes: name: Jacobson, Fritsch and Stanton @@ -7352,19 +7406,19 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:48:35.929Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:56.259Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: 37c70ac8-19b0-4454-911c-9ad65bb895db + id: 57bffc89-9707-4ce8-9727-99e8853b3173 type: user projects: data: [] @@ -7372,11 +7426,11 @@ paths: data: [] priority_landscapes: data: - - id: 92343f4c-e740-475b-ab66-7e48545b17f6 + - id: fb3f951b-d184-4e63-a6b3-d37bc1b2e2a4 type: location - - id: adfe2436-5423-4baa-917d-737b9cb6ed6b + - id: c2a56254-b32a-41fe-a7c3-b3c00c8100d3 type: location - - id: 5395859f-b143-449b-ac51-fce4711eb2a6 + - id: e2cf1457-2920-475c-ac89-09aa7f53915a type: project_developer attributes: name: Keebler, Kub and Zemlak @@ -7401,19 +7455,19 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:48:35.977Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:56.292Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: 53d07651-c403-4f4f-9813-af8ea2385a58 + id: 9c4b0ac0-1f7b-44c4-adf1-afb51070ae00 type: user projects: data: [] @@ -7421,11 +7475,11 @@ paths: data: [] priority_landscapes: data: - - id: 30dd8abf-b32c-4652-b173-fd09bf1a6aba + - id: 4883d4c7-7a35-43d3-b4f3-c691f5754229 type: location - - id: b1645f4e-b099-46b0-ab85-9b799bf8389d + - id: 9b506c85-5d99-4e62-93e6-ec0161736c4a type: location - - id: 4d4a957c-7a7f-4288-8629-63da441fbe08 + - id: b188cc57-b310-4393-9fce-d57520bab811 type: project_developer attributes: name: Kutch-Spencer @@ -7448,35 +7502,35 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:48:35.848Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:56.152Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: 38d78cfa-5645-404d-8e5b-488d345da5ce + id: 145b190e-6bf3-414e-b1f5-2525f70fe583 type: user projects: data: [] involved_projects: data: - - id: 455cc01f-6544-4a76-8f0a-b3ba0ee56a5e + - id: c05e0871-cb1f-45e0-bbc2-30b069a5e3e0 type: project - - id: 830004ec-8756-4af0-ba68-56863a3d930d + - id: aa1cfc32-b173-4452-9ea4-29067d4ced4c type: project priority_landscapes: data: - - id: 67a0ac6b-518c-452f-adcd-9e1cf6df7f68 + - id: 0edb7631-7cb2-4799-871a-33e86f290518 type: location - - id: 6d12efd4-23f2-486d-a929-abf790a34592 + - id: 6cc730c1-9a50-4b0a-87c2-f81087fbc74f type: location - - id: 1207d483-a0b2-4c08-b406-c415abc3d883 + - id: b355b127-2786-4689-8c28-1145ee204c05 type: project_developer attributes: name: Lind, Langworth and Gottlieb @@ -7500,19 +7554,19 @@ paths: account_language: pt entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:48:36.206Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:56.494Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: 738057d8-710d-478b-a912-6490a2789f4c + id: 73cd4551-2252-40e0-9100-94dd401b4bbe type: user projects: data: [] @@ -7520,11 +7574,11 @@ paths: data: [] priority_landscapes: data: - - id: 589a0130-da79-4ee7-9972-c054d43f540b + - id: e75003b5-8560-4fa3-82c7-148a713f8f6a type: location - - id: be31edf9-d24e-4207-adf3-b7eacaba17a0 + - id: afeffb72-2007-4222-ad88-791e58de9a2d type: location - - id: 3b6c75a1-2cb1-4bd9-9627-2a366cb933c1 + - id: 9c45d5af-a357-4866-9e00-28f0ff6fd825 type: project_developer attributes: name: Ritchie, Glover and Ward @@ -7549,19 +7603,19 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:48:36.128Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:56.393Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: 101c071f-18ee-4176-9a36-3ff453c2347b + id: 0da51a13-f15c-47dd-8a95-7496fece4a18 type: user projects: data: [] @@ -7569,11 +7623,11 @@ paths: data: [] priority_landscapes: data: - - id: 3008eaff-f26d-44fe-8c7c-6ba742d32922 + - id: 1cbf7dea-4886-4cab-a4e1-c7ce99981fac type: location - - id: bff2177e-02e4-4fbc-b290-c0b3964d74c8 + - id: 4910ffad-07bf-4490-a2fe-eebe3fdd3e85 type: location - - id: a55e766b-4770-4773-b2ad-7ec0c7706817 + - id: 906f8c46-1f53-48eb-b5a9-81442e042ec1 type: project_developer attributes: name: Runolfsson and Sons @@ -7598,19 +7652,19 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:48:36.103Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:56.359Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: 8bfeed09-23f4-4c1d-a54f-f69be09a4b55 + id: 2f703b29-66a8-440b-a197-d1841b170b82 type: user projects: data: [] @@ -7618,9 +7672,9 @@ paths: data: [] priority_landscapes: data: - - id: ae582228-52a9-48f4-8a4b-ade742e5ad43 + - id: 935a5116-d9ed-4701-b1cf-d9f7f91b30a9 type: location - - id: ba82eda1-7362-4f6f-b4e6-f8f34ad39742 + - id: 1f12049a-61ff-4f8f-bc08-d5323264b877 type: location meta: page: 1 @@ -7690,7 +7744,7 @@ paths: application/json: example: data: - id: 4d4a957c-7a7f-4288-8629-63da441fbe08 + id: b188cc57-b310-4393-9fce-d57520bab811 type: project_developer attributes: name: Kutch-Spencer @@ -7713,33 +7767,33 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T14:48:35.848Z' - contact_email: - contact_phone: + created_at: '2023-11-22T11:54:56.152Z' + contact_email: + contact_phone: picture: analyzed: false - small: - medium: - original: - favourite: + small: + medium: + original: + favourite: relationships: owner: data: - id: 38d78cfa-5645-404d-8e5b-488d345da5ce + id: 145b190e-6bf3-414e-b1f5-2525f70fe583 type: user projects: data: [] involved_projects: data: - - id: 455cc01f-6544-4a76-8f0a-b3ba0ee56a5e + - id: c05e0871-cb1f-45e0-bbc2-30b069a5e3e0 type: project - - id: 830004ec-8756-4af0-ba68-56863a3d930d + - id: aa1cfc32-b173-4452-9ea4-29067d4ced4c type: project priority_landscapes: data: - - id: 67a0ac6b-518c-452f-adcd-9e1cf6df7f68 + - id: 0edb7631-7cb2-4799-871a-33e86f290518 type: location - - id: 6d12efd4-23f2-486d-a929-abf790a34592 + - id: 6cc730c1-9a50-4b0a-87c2-f81087fbc74f type: location schema: type: object @@ -7813,49 +7867,49 @@ paths: application/json: example: data: - - id: 7c64b93f-5135-4b9a-ba75-1dd5f388ff94 + - id: 32be97f6-8655-4505-9919-09f15d9ff9ba type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: 30cec179-d6c4-46b2-877b-934471619c09 + - id: a3b3c4ad-7a7b-40c2-bb89-789e03bd90af type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: d434c2df-ad80-4b8e-b004-26192655da21 + - id: 7ad39690-8c18-40d9-9419-530928b081ce type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: fec65b45-e08d-42c6-b2dd-366eff508843 + - id: 0cdef676-f4d0-4519-9979-0b7bdad64f38 type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: 72105ed8-f327-48ba-9c23-2677de34f828 + - id: a40326e9-3128-4067-96b7-f33d98daaa09 type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: 8456f838-c028-41a4-a892-5ae5f103939c + - id: 13367eb1-d67f-4f27-a86b-e855e5acb31e type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: c57d2015-b685-4605-87bc-4bd7ab9d1a0a + - id: 697d0451-350f-495a-9608-fb17c6f31cc4 type: project_map attributes: verified: false @@ -7999,7 +8053,7 @@ paths: application/json: example: data: - - id: a0873224-4b19-4e94-97b6-0c466e4138fd + - id: 87e1c076-a63b-4f04-9dec-3c13ef192086 type: project attributes: name: Project 1 @@ -8043,7 +8097,7 @@ paths: received_funding: true received_funding_amount_usd: '3000.0' received_funding_investor: Bartoletti and Sons - relevant_links: + relevant_links: language: en account_language: en geometry: @@ -8064,57 +8118,63 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:48:37.775Z' - updated_at: '2023-11-22T14:48:37.775Z' - project_biodiversity_impact: - project_climate_impact: - project_water_impact: - project_community_impact: - project_total_impact: - municipality_biodiversity_impact: - municipality_climate_impact: - municipality_water_impact: - municipality_community_impact: - municipality_total_impact: - hydrobasin_biodiversity_impact: - hydrobasin_climate_impact: - hydrobasin_water_impact: - hydrobasin_community_impact: - hydrobasin_total_impact: - priority_landscape_biodiversity_impact: - priority_landscape_climate_impact: - priority_landscape_water_impact: - priority_landscape_community_impact: - priority_landscape_total_impact: + created_at: '2023-11-22T11:54:58.171Z' + updated_at: '2023-11-22T11:54:58.171Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: + municipality_biodiversity_impact: + municipality_climate_impact: + municipality_water_impact: + municipality_community_impact: + municipality_total_impact: + hydrobasin_biodiversity_impact: + hydrobasin_climate_impact: + hydrobasin_water_impact: + hydrobasin_community_impact: + hydrobasin_total_impact: + priority_landscape_biodiversity_impact: + priority_landscape_climate_impact: + priority_landscape_water_impact: + priority_landscape_community_impact: + priority_landscape_total_impact: impact_calculated: false + positive_financial_returns: Placeat commodi libero. Quo recusandae + repellat. + last_year_sales_revenue: Placeat commodi libero. + climate_change_risks_details: Placeat commodi libero. Quo recusandae + repellat. + climate_change_risks_identified: true latitude: 39.21309022641362 longitude: -5.87810037515931 - favourite: - funded: + favourite: + funded: relationships: project_developer: data: - id: 7f312ab4-5b77-4572-8be8-847b77df86a0 + id: 07202cd8-a9a1-41f7-b50f-19fc23a3e8c2 type: project_developer country: data: - id: f95527d0-a45c-4ea9-9459-0eb3f986bfec + id: 838bfc46-477b-44d7-9c31-09d0f86f02ad type: location municipality: data: - id: 7c533752-c7ef-46c7-bdaa-6f58fc981949 + id: f8949f82-f3fd-4488-abde-8f4a4071a31e type: location department: data: - id: '07019d8d-4971-41d8-81fa-12e5b576a792' + id: bc8c93de-598b-4436-aaa2-64e2f06bdef5 type: location priority_landscape: - data: + data: involved_project_developers: data: [] project_images: data: [] - - id: 97a466e6-8b3b-45ef-931a-132a9518c9b2 + - id: e8ce82d9-9a3b-4c63-a299-336bc2fac621 type: project attributes: name: Project 2 @@ -8158,7 +8218,7 @@ paths: received_funding: true received_funding_amount_usd: '3000.0' received_funding_investor: Hane, Lehner and Goyette - relevant_links: + relevant_links: language: en account_language: en geometry: @@ -8179,57 +8239,62 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:48:37.829Z' - updated_at: '2023-11-22T14:48:37.829Z' - project_biodiversity_impact: - project_climate_impact: - project_water_impact: - project_community_impact: - project_total_impact: - municipality_biodiversity_impact: - municipality_climate_impact: - municipality_water_impact: - municipality_community_impact: - municipality_total_impact: - hydrobasin_biodiversity_impact: - hydrobasin_climate_impact: - hydrobasin_water_impact: - hydrobasin_community_impact: - hydrobasin_total_impact: - priority_landscape_biodiversity_impact: - priority_landscape_climate_impact: - priority_landscape_water_impact: - priority_landscape_community_impact: - priority_landscape_total_impact: + created_at: '2023-11-22T11:54:58.239Z' + updated_at: '2023-11-22T11:54:58.239Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: + municipality_biodiversity_impact: + municipality_climate_impact: + municipality_water_impact: + municipality_community_impact: + municipality_total_impact: + hydrobasin_biodiversity_impact: + hydrobasin_climate_impact: + hydrobasin_water_impact: + hydrobasin_community_impact: + hydrobasin_total_impact: + priority_landscape_biodiversity_impact: + priority_landscape_climate_impact: + priority_landscape_water_impact: + priority_landscape_community_impact: + priority_landscape_total_impact: impact_calculated: false + positive_financial_returns: Et quaerat omnis. Harum voluptas atque. + last_year_sales_revenue: Et quaerat omnis. + climate_change_risks_details: Et quaerat omnis. Harum voluptas + atque. + climate_change_risks_identified: true latitude: 39.21309022641362 longitude: -5.87810037515931 - favourite: - funded: + favourite: + funded: relationships: project_developer: data: - id: 70b27ea2-7072-4a78-8d1d-fd0c5de91370 + id: 885bce9a-e966-4ba3-b80a-c2c77623816b type: project_developer country: data: - id: ef157691-ca85-4431-bdd1-f695a92e0065 + id: 030e9a00-e6aa-46fb-a125-8ae987a72777 type: location municipality: data: - id: 9e7de6c5-08f0-4652-a407-bd4307dd5415 + id: 0fba05f3-b2ab-4f86-80ec-00da3d14af3b type: location department: data: - id: 41328c86-51d2-4613-b840-0e7185d41023 + id: ac7dfa01-45e6-4921-be7b-7915de090863 type: location priority_landscape: - data: + data: involved_project_developers: data: [] project_images: data: [] - - id: ab3e27c8-1f22-47bb-a570-8de006c247f5 + - id: db131ed4-ad8d-451d-b485-6ffc57636fc0 type: project attributes: name: Project 3 @@ -8273,7 +8338,7 @@ paths: received_funding: true received_funding_amount_usd: '3000.0' received_funding_investor: Hilpert, Waters and Johnston - relevant_links: + relevant_links: language: en account_language: en geometry: @@ -8294,57 +8359,63 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:48:37.884Z' - updated_at: '2023-11-22T14:48:37.884Z' - project_biodiversity_impact: - project_climate_impact: - project_water_impact: - project_community_impact: - project_total_impact: - municipality_biodiversity_impact: - municipality_climate_impact: - municipality_water_impact: - municipality_community_impact: - municipality_total_impact: - hydrobasin_biodiversity_impact: - hydrobasin_climate_impact: - hydrobasin_water_impact: - hydrobasin_community_impact: - hydrobasin_total_impact: - priority_landscape_biodiversity_impact: - priority_landscape_climate_impact: - priority_landscape_water_impact: - priority_landscape_community_impact: - priority_landscape_total_impact: + created_at: '2023-11-22T11:54:58.304Z' + updated_at: '2023-11-22T11:54:58.304Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: + municipality_biodiversity_impact: + municipality_climate_impact: + municipality_water_impact: + municipality_community_impact: + municipality_total_impact: + hydrobasin_biodiversity_impact: + hydrobasin_climate_impact: + hydrobasin_water_impact: + hydrobasin_community_impact: + hydrobasin_total_impact: + priority_landscape_biodiversity_impact: + priority_landscape_climate_impact: + priority_landscape_water_impact: + priority_landscape_community_impact: + priority_landscape_total_impact: impact_calculated: false + positive_financial_returns: Dolores fugiat nesciunt. Ut laborum + dolores. + last_year_sales_revenue: Dolores fugiat nesciunt. + climate_change_risks_details: Dolores fugiat nesciunt. Ut laborum + dolores. + climate_change_risks_identified: true latitude: 39.21309022641362 longitude: -5.87810037515931 - favourite: - funded: + favourite: + funded: relationships: project_developer: data: - id: f9584e3f-39a3-42bc-a3d0-0826e66e1cc4 + id: f49c269f-5625-4ee3-b73d-5d350fe689a3 type: project_developer country: data: - id: e90f7737-1348-4576-9d65-6a9bdaf4bfb5 + id: 930658c1-d80e-446e-b248-5b14ffb751c2 type: location municipality: data: - id: eeb842e8-c2ac-49c2-908a-18a613b7014b + id: 2e65f42f-c80b-4ddc-bb1a-ceaa46e6a332 type: location department: data: - id: 9f086130-b0f0-4173-b2ea-27808906c8e8 + id: 9122f9b7-6ee1-4569-98e5-33ca4808c648 type: location priority_landscape: - data: + data: involved_project_developers: data: [] project_images: data: [] - - id: '0123970b-2960-4e80-a327-da2d9e3ec7a9' + - id: 343d2d42-3d3d-4505-a03c-3543f15fdf9d type: project attributes: name: Project 4 @@ -8388,7 +8459,7 @@ paths: received_funding: true received_funding_amount_usd: '3000.0' received_funding_investor: Jacobson, Fritsch and Stanton - relevant_links: + relevant_links: language: en account_language: en geometry: @@ -8409,57 +8480,61 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:48:37.940Z' - updated_at: '2023-11-22T14:48:37.940Z' - project_biodiversity_impact: - project_climate_impact: - project_water_impact: - project_community_impact: - project_total_impact: - municipality_biodiversity_impact: - municipality_climate_impact: - municipality_water_impact: - municipality_community_impact: - municipality_total_impact: - hydrobasin_biodiversity_impact: - hydrobasin_climate_impact: - hydrobasin_water_impact: - hydrobasin_community_impact: - hydrobasin_total_impact: - priority_landscape_biodiversity_impact: - priority_landscape_climate_impact: - priority_landscape_water_impact: - priority_landscape_community_impact: - priority_landscape_total_impact: + created_at: '2023-11-22T11:54:58.372Z' + updated_at: '2023-11-22T11:54:58.372Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: + municipality_biodiversity_impact: + municipality_climate_impact: + municipality_water_impact: + municipality_community_impact: + municipality_total_impact: + hydrobasin_biodiversity_impact: + hydrobasin_climate_impact: + hydrobasin_water_impact: + hydrobasin_community_impact: + hydrobasin_total_impact: + priority_landscape_biodiversity_impact: + priority_landscape_climate_impact: + priority_landscape_water_impact: + priority_landscape_community_impact: + priority_landscape_total_impact: impact_calculated: false + positive_financial_returns: Autem et et. Voluptatem neque quibusdam. + last_year_sales_revenue: Autem et et. + climate_change_risks_details: Autem et et. Voluptatem neque quibusdam. + climate_change_risks_identified: true latitude: 39.21309022641362 longitude: -5.87810037515931 - favourite: - funded: + favourite: + funded: relationships: project_developer: data: - id: 5971ca6a-bb72-4504-8023-14a72daad9d3 + id: 10419c54-cbaf-4fed-989a-1580f5251b59 type: project_developer country: data: - id: 44fc0315-d2f6-48d1-a51c-5bba2a64cf63 + id: da5efa8f-d303-4cf7-bc39-9b9f9f053337 type: location municipality: data: - id: f36e0bf9-a0cc-4733-b2eb-f0a791233c61 + id: 277bc107-4276-4c94-9ac6-c956a8c6c42f type: location department: data: - id: f966bc0f-4a34-4525-8b08-d155665d2e98 + id: 17fe660f-d276-48a4-bd68-730de39a04e2 type: location priority_landscape: - data: + data: involved_project_developers: data: [] project_images: data: [] - - id: 1308d3d0-436f-4861-81ae-f883b1b01801 + - id: 7aa1a4aa-23fd-4855-b0d3-1c2eb6555a47 type: project attributes: name: Project 5 @@ -8503,7 +8578,7 @@ paths: received_funding: true received_funding_amount_usd: '3000.0' received_funding_investor: Keebler, Kub and Zemlak - relevant_links: + relevant_links: language: en account_language: en geometry: @@ -8524,57 +8599,63 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:48:37.995Z' - updated_at: '2023-11-22T14:48:37.995Z' - project_biodiversity_impact: - project_climate_impact: - project_water_impact: - project_community_impact: - project_total_impact: - municipality_biodiversity_impact: - municipality_climate_impact: - municipality_water_impact: - municipality_community_impact: - municipality_total_impact: - hydrobasin_biodiversity_impact: - hydrobasin_climate_impact: - hydrobasin_water_impact: - hydrobasin_community_impact: - hydrobasin_total_impact: - priority_landscape_biodiversity_impact: - priority_landscape_climate_impact: - priority_landscape_water_impact: - priority_landscape_community_impact: - priority_landscape_total_impact: + created_at: '2023-11-22T11:54:58.438Z' + updated_at: '2023-11-22T11:54:58.438Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: + municipality_biodiversity_impact: + municipality_climate_impact: + municipality_water_impact: + municipality_community_impact: + municipality_total_impact: + hydrobasin_biodiversity_impact: + hydrobasin_climate_impact: + hydrobasin_water_impact: + hydrobasin_community_impact: + hydrobasin_total_impact: + priority_landscape_biodiversity_impact: + priority_landscape_climate_impact: + priority_landscape_water_impact: + priority_landscape_community_impact: + priority_landscape_total_impact: impact_calculated: false + positive_financial_returns: Porro soluta beatae. Quia ratione + facilis. + last_year_sales_revenue: Porro soluta beatae. + climate_change_risks_details: Porro soluta beatae. Quia ratione + facilis. + climate_change_risks_identified: true latitude: 39.21309022641362 longitude: -5.87810037515931 - favourite: - funded: + favourite: + funded: relationships: project_developer: data: - id: b63b068e-deab-426e-a7e0-fb115abb2cb1 + id: 3dfd72d7-63fe-432f-a3f0-a52efea52964 type: project_developer country: data: - id: a558e739-2483-4862-89a0-03b46db6d4fd + id: 58f9d22d-b675-43a0-9cb1-0a14d9aec6e0 type: location municipality: data: - id: 8ad05ae4-8491-48cc-a607-bad268db6c44 + id: 3a0d20d6-ddb0-41b8-b7d9-c524a64d788a type: location department: data: - id: e0327c28-6b6f-4883-a889-2bef9646f331 + id: 405fa157-498b-44bf-9711-6cd67375bf75 type: location priority_landscape: - data: + data: involved_project_developers: data: [] project_images: data: [] - - id: eb887efd-3e44-4d51-b5d7-dbd772628f96 + - id: 756aca28-c38a-4861-bdef-55a692bb65cc type: project attributes: name: Project 6 @@ -8618,7 +8699,7 @@ paths: received_funding: true received_funding_amount_usd: '3000.0' received_funding_investor: Becker LLC - relevant_links: + relevant_links: language: en account_language: en geometry: @@ -8639,57 +8720,61 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:48:38.051Z' - updated_at: '2023-11-22T14:48:38.051Z' - project_biodiversity_impact: - project_climate_impact: - project_water_impact: - project_community_impact: - project_total_impact: - municipality_biodiversity_impact: - municipality_climate_impact: - municipality_water_impact: - municipality_community_impact: - municipality_total_impact: - hydrobasin_biodiversity_impact: - hydrobasin_climate_impact: - hydrobasin_water_impact: - hydrobasin_community_impact: - hydrobasin_total_impact: - priority_landscape_biodiversity_impact: - priority_landscape_climate_impact: - priority_landscape_water_impact: - priority_landscape_community_impact: - priority_landscape_total_impact: + created_at: '2023-11-22T11:54:58.516Z' + updated_at: '2023-11-22T11:54:58.516Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: + municipality_biodiversity_impact: + municipality_climate_impact: + municipality_water_impact: + municipality_community_impact: + municipality_total_impact: + hydrobasin_biodiversity_impact: + hydrobasin_climate_impact: + hydrobasin_water_impact: + hydrobasin_community_impact: + hydrobasin_total_impact: + priority_landscape_biodiversity_impact: + priority_landscape_climate_impact: + priority_landscape_water_impact: + priority_landscape_community_impact: + priority_landscape_total_impact: impact_calculated: false + positive_financial_returns: Mollitia aut vel. Qui illum accusantium. + last_year_sales_revenue: Mollitia aut vel. + climate_change_risks_details: Mollitia aut vel. Qui illum accusantium. + climate_change_risks_identified: true latitude: 39.21309022641362 longitude: -5.87810037515931 - favourite: - funded: + favourite: + funded: relationships: project_developer: data: - id: 427d8aac-e9ec-4bfd-a08b-5b6298bb9044 + id: 2002c471-10f8-4b1a-98a4-65cb9cd2a3f1 type: project_developer country: data: - id: 6b2afb85-0149-4f1d-8782-4a9529426577 + id: a4b504d0-647f-456c-9613-f86fedfc2b2e type: location municipality: data: - id: 92f2400c-a70c-420c-9b1d-b0cf5497c385 + id: 20e1d410-189d-44d9-bbd3-464938f4a34e type: location department: data: - id: e86efe4c-6251-4168-92b3-f01bbdc06f9a + id: 215b01fb-9350-4492-a6e5-abccfb2ea999 type: location priority_landscape: - data: + data: involved_project_developers: data: [] project_images: data: [] - - id: cf15b0b5-1d8a-4128-8dca-693c407ba277 + - id: 523910ea-9eee-47c4-90ff-c0faea4eb0bd type: project attributes: name: Project 9 @@ -8732,7 +8817,7 @@ paths: received_funding: true received_funding_amount_usd: '3000.0' received_funding_investor: Gleichner-Bartoletti - relevant_links: + relevant_links: language: en account_language: pt geometry: @@ -8753,57 +8838,61 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T14:48:38.251Z' - updated_at: '2023-11-22T14:48:38.251Z' - project_biodiversity_impact: - project_climate_impact: - project_water_impact: - project_community_impact: - project_total_impact: - municipality_biodiversity_impact: - municipality_climate_impact: - municipality_water_impact: - municipality_community_impact: - municipality_total_impact: - hydrobasin_biodiversity_impact: - hydrobasin_climate_impact: - hydrobasin_water_impact: - hydrobasin_community_impact: - hydrobasin_total_impact: - priority_landscape_biodiversity_impact: - priority_landscape_climate_impact: - priority_landscape_water_impact: - priority_landscape_community_impact: - priority_landscape_total_impact: + created_at: '2023-11-22T11:54:58.755Z' + updated_at: '2023-11-22T11:54:58.755Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: + municipality_biodiversity_impact: + municipality_climate_impact: + municipality_water_impact: + municipality_community_impact: + municipality_total_impact: + hydrobasin_biodiversity_impact: + hydrobasin_climate_impact: + hydrobasin_water_impact: + hydrobasin_community_impact: + hydrobasin_total_impact: + priority_landscape_biodiversity_impact: + priority_landscape_climate_impact: + priority_landscape_water_impact: + priority_landscape_community_impact: + priority_landscape_total_impact: impact_calculated: false + positive_financial_returns: Tempora excepturi et. Et quia sit. + last_year_sales_revenue: Tempora excepturi et. + climate_change_risks_details: Tempora excepturi et. Et quia sit. + climate_change_risks_identified: true latitude: 39.21309022641362 longitude: -5.87810037515931 - favourite: - funded: + favourite: + funded: relationships: project_developer: data: - id: 1093b39f-dfaf-4861-910e-9d6136dd859f + id: 72349428-fbd3-42ae-8f80-ca1b31ef60bb type: project_developer country: data: - id: 452509b8-15d8-402e-9319-51ba6ba1f63b + id: 9e820a85-a429-4259-9a93-8769844d949a type: location municipality: data: - id: 28c1084d-fa57-4d99-860d-5ce2a9a2cb62 + id: '08b6b0d8-83f0-49ee-920f-49463ed92864' type: location department: data: - id: b77dd0e1-5e7c-4e3c-a0be-64def62747ce + id: eaa33193-7d61-4e0b-aecc-16d324e296eb type: location priority_landscape: - data: + data: involved_project_developers: data: [] project_images: data: [] - - id: 7a61fa47-0a12-49c2-9b3e-7a0d582a68fc + - id: '0919b668-6672-47db-88ae-a9784e1b92d8' type: project attributes: name: Yellow Banana @@ -8847,7 +8936,7 @@ paths: received_funding: true received_funding_amount_usd: '3000.0' received_funding_investor: Kutch-Spencer - relevant_links: + relevant_links: language: en account_language: en geometry: @@ -8864,65 +8953,71 @@ paths: - - 0.0 - 0.0 verified: false - created_at: '2023-11-22T14:48:37.709Z' - updated_at: '2023-11-22T14:48:37.709Z' - project_biodiversity_impact: - project_climate_impact: - project_water_impact: - project_community_impact: - project_total_impact: - municipality_biodiversity_impact: - municipality_climate_impact: - municipality_water_impact: - municipality_community_impact: - municipality_total_impact: - hydrobasin_biodiversity_impact: - hydrobasin_climate_impact: - hydrobasin_water_impact: - hydrobasin_community_impact: - hydrobasin_total_impact: - priority_landscape_biodiversity_impact: - priority_landscape_climate_impact: - priority_landscape_water_impact: - priority_landscape_community_impact: - priority_landscape_total_impact: + created_at: '2023-11-22T11:54:58.092Z' + updated_at: '2023-11-22T11:54:58.092Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: + municipality_biodiversity_impact: + municipality_climate_impact: + municipality_water_impact: + municipality_community_impact: + municipality_total_impact: + hydrobasin_biodiversity_impact: + hydrobasin_climate_impact: + hydrobasin_water_impact: + hydrobasin_community_impact: + hydrobasin_total_impact: + priority_landscape_biodiversity_impact: + priority_landscape_climate_impact: + priority_landscape_water_impact: + priority_landscape_community_impact: + priority_landscape_total_impact: impact_calculated: false + positive_financial_returns: Enim repellat pariatur. Earum modi + eos. + last_year_sales_revenue: Enim repellat pariatur. + climate_change_risks_details: Enim repellat pariatur. Earum modi + eos. + climate_change_risks_identified: true latitude: 0.5 longitude: 0.5 - favourite: - funded: + favourite: + funded: relationships: project_developer: data: - id: 8d4a6f9e-4267-4951-86a3-17b694076399 + id: 86dfb982-e9d3-4cd0-bd5b-1494a917a98b type: project_developer country: data: - id: 35f83ff1-1abd-466f-8664-81979f8e316e + id: fdc89463-fdfc-4b86-a56e-758543617991 type: location municipality: data: - id: 8a1707f6-ec33-468a-bc08-fa0ec105942d + id: 19b2407d-8da7-4a42-8b84-f13e23ffe876 type: location department: data: - id: 69d2adce-5d1c-4b1c-8ff4-4ffc322a59d5 + id: 7ebeab12-33a4-4c01-8217-65ad17974691 type: location priority_landscape: data: - id: bf49429a-f929-46cf-81bd-65a87bbffe92 + id: ff83884c-f632-481a-b38c-9b163ae2daff type: location involved_project_developers: data: - - id: 71e6f4c0-0e89-4494-a666-15ca639d86a0 + - id: 5aeda58d-594b-4fe0-9eec-2b69dd9f72cd type: project_developer - - id: 43b63380-7475-4422-847d-3dbee61a209a + - id: 90233779-e157-49a1-a992-eb727cade719 type: project_developer project_images: data: - - id: da560236-1d43-4f7e-a356-1474a7d5c7c8 + - id: b45ff0ff-2e3c-4205-a48a-1c7fffa5f52d type: project_image - - id: 9e548909-887e-40fb-b3cc-77b062723d36 + - id: 53be483a-3c66-4b59-9799-fd3ad25f9639 type: project_image meta: page: 1 @@ -8992,7 +9087,7 @@ paths: application/json: example: data: - id: 7a61fa47-0a12-49c2-9b3e-7a0d582a68fc + id: '0919b668-6672-47db-88ae-a9784e1b92d8' type: project attributes: name: Yellow Banana @@ -9036,7 +9131,7 @@ paths: received_funding: true received_funding_amount_usd: '3000.0' received_funding_investor: Kutch-Spencer - relevant_links: + relevant_links: language: en account_language: en geometry: @@ -9053,65 +9148,71 @@ paths: - - 0.0 - 0.0 verified: false - created_at: '2023-11-22T14:48:37.709Z' - updated_at: '2023-11-22T14:48:37.709Z' - project_biodiversity_impact: - project_climate_impact: - project_water_impact: - project_community_impact: - project_total_impact: - municipality_biodiversity_impact: - municipality_climate_impact: - municipality_water_impact: - municipality_community_impact: - municipality_total_impact: - hydrobasin_biodiversity_impact: - hydrobasin_climate_impact: - hydrobasin_water_impact: - hydrobasin_community_impact: - hydrobasin_total_impact: - priority_landscape_biodiversity_impact: - priority_landscape_climate_impact: - priority_landscape_water_impact: - priority_landscape_community_impact: - priority_landscape_total_impact: + created_at: '2023-11-22T11:54:58.092Z' + updated_at: '2023-11-22T11:54:58.092Z' + project_biodiversity_impact: + project_climate_impact: + project_water_impact: + project_community_impact: + project_total_impact: + municipality_biodiversity_impact: + municipality_climate_impact: + municipality_water_impact: + municipality_community_impact: + municipality_total_impact: + hydrobasin_biodiversity_impact: + hydrobasin_climate_impact: + hydrobasin_water_impact: + hydrobasin_community_impact: + hydrobasin_total_impact: + priority_landscape_biodiversity_impact: + priority_landscape_climate_impact: + priority_landscape_water_impact: + priority_landscape_community_impact: + priority_landscape_total_impact: impact_calculated: false + positive_financial_returns: Enim repellat pariatur. Earum modi + eos. + last_year_sales_revenue: Enim repellat pariatur. + climate_change_risks_details: Enim repellat pariatur. Earum modi + eos. + climate_change_risks_identified: true latitude: 0.5 longitude: 0.5 - favourite: - funded: + favourite: + funded: relationships: project_developer: data: - id: 8d4a6f9e-4267-4951-86a3-17b694076399 + id: 86dfb982-e9d3-4cd0-bd5b-1494a917a98b type: project_developer country: data: - id: 35f83ff1-1abd-466f-8664-81979f8e316e + id: fdc89463-fdfc-4b86-a56e-758543617991 type: location municipality: data: - id: 8a1707f6-ec33-468a-bc08-fa0ec105942d + id: 19b2407d-8da7-4a42-8b84-f13e23ffe876 type: location department: data: - id: 69d2adce-5d1c-4b1c-8ff4-4ffc322a59d5 + id: 7ebeab12-33a4-4c01-8217-65ad17974691 type: location priority_landscape: data: - id: bf49429a-f929-46cf-81bd-65a87bbffe92 + id: ff83884c-f632-481a-b38c-9b163ae2daff type: location involved_project_developers: data: - - id: 71e6f4c0-0e89-4494-a666-15ca639d86a0 + - id: 5aeda58d-594b-4fe0-9eec-2b69dd9f72cd type: project_developer - - id: 43b63380-7475-4422-847d-3dbee61a209a + - id: 90233779-e157-49a1-a992-eb727cade719 type: project_developer project_images: data: - - id: da560236-1d43-4f7e-a356-1474a7d5c7c8 + - id: b45ff0ff-2e3c-4205-a48a-1c7fffa5f52d type: project_image - - id: 9e548909-887e-40fb-b3cc-77b062723d36 + - id: 53be483a-3c66-4b59-9799-fd3ad25f9639 type: project_image schema: type: object @@ -9159,26 +9260,26 @@ paths: application/json: example: data: - id: e6d716d9-1fe7-47b2-89b3-f948175fa5bb + id: e199c8ca-c79d-449a-a784-f12e103e5123 type: user attributes: first_name: Dawna last_name: Block email: user@example.com role: light - created_at: '2023-11-22T14:48:38.945Z' + created_at: '2023-11-22T11:54:59.613Z' ui_language: en - account_language: + account_language: otp_required_for_login: false confirmed: true - approved: - invitation: + approved: + invitation: owner: false avatar: - analyzed: - small: - medium: - original: + analyzed: + small: + medium: + original: schema: type: object properties: @@ -9222,26 +9323,26 @@ paths: application/json: example: data: - id: b24b614d-c0a1-4f8b-ba44-c1504d04f0ac + id: ded395a5-f4a7-40f8-8e92-e844274261ca type: user attributes: first_name: Dawna last_name: Block email: user@example.com role: light - created_at: '2023-11-22T14:48:39.039Z' + created_at: '2023-11-22T11:54:59.753Z' ui_language: en - account_language: + account_language: otp_required_for_login: false confirmed: true - approved: - invitation: + approved: + invitation: owner: false avatar: - analyzed: - small: - medium: - original: + analyzed: + small: + medium: + original: schema: type: object properties: @@ -9296,7 +9397,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '200': description: success requestBody: @@ -9354,26 +9455,26 @@ paths: application/json: example: data: - id: 0e3c50e0-ce8e-4a03-a29c-67b4fb6a7015 + id: b92d454b-df82-4be3-80ba-21d9695e2e7c type: user attributes: first_name: Jan last_name: Kowalski email: jankowalski@example.com role: light - created_at: '2023-11-22T14:48:39.356Z' + created_at: '2023-11-22T11:55:00.216Z' ui_language: en - account_language: + account_language: otp_required_for_login: false confirmed: true - approved: + approved: invitation: waiting owner: false avatar: - analyzed: - small: - medium: - original: + analyzed: + small: + medium: + original: schema: type: object properties: @@ -9443,33 +9544,33 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '200': description: success content: application/json: example: data: - id: b3c5e3c3-3f60-4cd5-bdfd-daf3e5ebb257 + id: c4007b0e-fdf3-4a0a-9411-804f245d71c4 type: user attributes: first_name: New First Name last_name: New Last Name email: user@example.com role: light - created_at: '2023-11-22T14:48:39.311Z' + created_at: '2023-11-22T11:55:00.136Z' ui_language: en - account_language: + account_language: otp_required_for_login: true confirmed: true - approved: - invitation: + approved: + invitation: owner: false avatar: analyzed: false - small: - medium: - original: + small: + medium: + original: schema: type: object properties: @@ -9513,33 +9614,33 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '200': description: success content: application/json: example: data: - id: b3c5e3c3-3f60-4cd5-bdfd-daf3e5ebb257 + id: c4007b0e-fdf3-4a0a-9411-804f245d71c4 type: user attributes: first_name: Dawna last_name: Block email: user@example.com role: light - created_at: '2023-11-22T14:48:39.311Z' + created_at: '2023-11-22T11:55:00.136Z' ui_language: en - account_language: + account_language: otp_required_for_login: false confirmed: true - approved: - invitation: + approved: + invitation: owner: false avatar: analyzed: false - small: - medium: - original: + small: + medium: + original: schema: type: object properties: @@ -9562,7 +9663,7 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '200': description: success '422': @@ -9605,25 +9706,25 @@ paths: example: errors: - title: You need to sign in or sign up before continuing. - code: + code: '200': description: success content: application/json: example: - id: 1069f4b9-74f1-47d4-ba5d-4fb3ee2bfd4f - key: c4i33jfzxpnodvl4ehakk4hj8h62 + id: f995a20f-db09-428b-b1a5-52041feb59a7 + key: 7kmg4tu082hroezdvi7x4eosla5r filename: test.jpg content_type: image/jpeg metadata: {} service_name: test byte_size: 32326 checksum: QYeLAwqIj9HrwITqtTYaEw== - created_at: '2023-11-22T14:48:39.702Z' - signed_id: eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaEpJaWt4TURZNVpqUmlPUzAzTkdZeExUUTNaRFF0WW1FMVpDMDBabUl6WldVeVltWmtOR1lHT2daRlZBPT0iLCJleHAiOm51bGwsInB1ciI6ImJsb2JfaWQifX0=--589127e75791fcfae51a9b35438ca6755cf35f78 - attachable_sgid: BAh7CEkiCGdpZAY6BkVUSSJWZ2lkOi8vYmFja2VuZC9BY3RpdmVTdG9yYWdlOjpCbG9iLzEwNjlmNGI5LTc0ZjEtNDdkNC1iYTVkLTRmYjNlZTJiZmQ0Zj9leHBpcmVzX2luBjsAVEkiDHB1cnBvc2UGOwBUSSIPYXR0YWNoYWJsZQY7AFRJIg9leHBpcmVzX2F0BjsAVDA=--509159a71a621b996d10db2d66ca0a3af5384b49 + created_at: '2023-11-22T11:55:01.159Z' + signed_id: eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaEpJaWxtT1RrMVlUSXdaaTFrWWpBNUxUUXlPR0l0WWpGaE5TMDFNakEwTVdabFlqVTVZVGNHT2daRlZBPT0iLCJleHAiOm51bGwsInB1ciI6ImJsb2JfaWQifX0=--11355062f57497523de12eac478503f6749e0198 + attachable_sgid: eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaEpJbFpuYVdRNkx5OWlZV05yWlc1a0wwRmpkR2wyWlZOMGIzSmhaMlU2T2tKc2IySXZaams1TldFeU1HWXRaR0l3T1MwME1qaGlMV0l4WVRVdE5USXdOREZtWldJMU9XRTNQMlY0Y0dseVpYTmZhVzRHT2daRlZBPT0iLCJleHAiOm51bGwsInB1ciI6ImF0dGFjaGFibGUifX0=--a0e3ebe523ba86ad40d69130e93b7fb4173b935b direct_upload: - url: http://www.example.com/backend/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDam9JYTJWNVNTSWhZelJwTXpOcVpucDRjRzV2Wkhac05HVm9ZV3RyTkdocU9HZzJNZ1k2QmtWVU9oRmpiMjUwWlc1MFgzUjVjR1ZKSWc5cGJXRm5aUzlxY0dWbkJqc0dWRG9UWTI5dWRHVnVkRjlzWlc1bmRHaHBBa1orT2cxamFHVmphM04xYlVraUhWRlpaVXhCZDNGSmFqbEljbmRKVkhGMFZGbGhSWGM5UFFZN0JsUTZFWE5sY25acFkyVmZibUZ0WlRvSmRHVnpkQT09IiwiZXhwIjoiMjAyMy0xMS0yMlQxNDo1MzozOS43MDNaIiwicHVyIjoiYmxvYl90b2tlbiJ9fQ==--aacdccad53f8d7ca43b447903b49345543dae705 + url: http://www.example.com/backend/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDam9JYTJWNVNTSWhOMnR0WnpSMGRUQTRNbWh5YjJWNlpIWnBOM2cwWlc5emJHRTFjZ1k2QmtWVU9oRmpiMjUwWlc1MFgzUjVjR1ZKSWc5cGJXRm5aUzlxY0dWbkJqc0dWRG9UWTI5dWRHVnVkRjlzWlc1bmRHaHBBa1orT2cxamFHVmphM04xYlVraUhWRlpaVXhCZDNGSmFqbEljbmRKVkhGMFZGbGhSWGM5UFFZN0JsUTZFWE5sY25acFkyVmZibUZ0WlRvSmRHVnpkQT09IiwiZXhwIjoiMjAyMy0xMS0yMlQxMjowMDowMS4xNjFaIiwicHVyIjoiYmxvYl90b2tlbiJ9fQ==--5c5edb12fd3f45928f288b5250fd3593b8d64bcf headers: Content-Type: image/jpeg schema: @@ -10412,7 +10513,6 @@ components: - errors servers: - url: "/" -- url: "/backend" - url: "{scheme}://{host}" variables: scheme: From fac7d4c36b45fcf65c84e5eb7571f99ee544e5e1 Mon Sep 17 00:00:00 2001 From: yulia-bel Date: Wed, 22 Nov 2023 14:13:46 +0100 Subject: [PATCH 07/10] Update last_year_sales_revenue attribute --- backend/app/views/backoffice/projects/_form.html.erb | 6 +++++- backend/config/locales/zu.yml | 3 ++- ...058_add_financial_and_climate_change_data_to_projects.rb | 4 +--- backend/db/schema.rb | 4 +--- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/backend/app/views/backoffice/projects/_form.html.erb b/backend/app/views/backoffice/projects/_form.html.erb index dd766d89d..1ba36dd71 100644 --- a/backend/app/views/backoffice/projects/_form.html.erb +++ b/backend/app/views/backoffice/projects/_form.html.erb @@ -71,8 +71,12 @@ <%= f.input :received_funding_amount_usd, label: t("simple_form.labels.project.received_funding_amount_usd") %> <%= f.input :received_funding_investor, label: t("simple_form.labels.project.received_funding_investor"), as: :string %> + +

+ <%= t(".other_information") %> +

<%= localized_input f, :positive_financial_returns, content_language, label: t("simple_form.labels.project.positive_financial_returns"), as: :text, input_html: {rows: 5} %> - <%= localized_input f, :last_year_sales_revenue, content_language, label: t("simple_form.labels.project.last_year_sales_revenue"), as: :text, input_html: {rows: 5} %> + <%= localized_input f, :last_year_sales_revenue, content_language, label: t("simple_form.labels.project.last_year_sales_revenue") %> <%= f.input :climate_change_risks_identified, label: t("simple_form.labels.project.climate_change_risks_identified"), as: :radio_buttons %> <%= localized_input f, :climate_change_risks_details, content_language, label: t("simple_form.labels.project.climate_change_risks_details"), as: :text, input_html: {rows: 5} %> diff --git a/backend/config/locales/zu.yml b/backend/config/locales/zu.yml index 0380f97f3..4affd2b0c 100644 --- a/backend/config/locales/zu.yml +++ b/backend/config/locales/zu.yml @@ -87,7 +87,7 @@ zu: positive_financial_returns: If your current business model generates positive financial returns, please explain what they consist of last_year_sales_revenue: What was the sales revenue in the last fiscal year-end? climate_change_risks_identified: Has the project identified the risks of climate change to which the business is exposed and potential mitigation strategies? - climate_change_risks_details: If yes, please, discribe these risks + climate_change_risks_details: If yes, please, describe the risks of climate change open_call: name: Open call name picture: Picture @@ -271,6 +271,7 @@ zu: description: Description of the project impact: Impact funding_information: Funding information + other_information: Other information how_will_project_grow: How the project will grow shapefile_upload: Upload Shapefile/KML shapefile_uploading: Uploading... diff --git a/backend/db/migrate/20231120155058_add_financial_and_climate_change_data_to_projects.rb b/backend/db/migrate/20231120155058_add_financial_and_climate_change_data_to_projects.rb index e64376aa8..4f8589473 100644 --- a/backend/db/migrate/20231120155058_add_financial_and_climate_change_data_to_projects.rb +++ b/backend/db/migrate/20231120155058_add_financial_and_climate_change_data_to_projects.rb @@ -3,9 +3,7 @@ def change add_column :projects, :positive_financial_returns_en, :text, null: true add_column :projects, :positive_financial_returns_es, :text, null: true add_column :projects, :positive_financial_returns_pt, :text, null: true - add_column :projects, :last_year_sales_revenue_en, :text, null: true - add_column :projects, :last_year_sales_revenue_es, :text, null: true - add_column :projects, :last_year_sales_revenue_pt, :text, null: true + add_column :projects, :last_year_sales_revenue, :decimal, null: true add_column :projects, :climate_change_risks_details_en, :text, null: true add_column :projects, :climate_change_risks_details_es, :text, null: true add_column :projects, :climate_change_risks_details_pt, :text, null: true diff --git a/backend/db/schema.rb b/backend/db/schema.rb index 04300e051..bf40aeab0 100644 --- a/backend/db/schema.rb +++ b/backend/db/schema.rb @@ -422,9 +422,7 @@ t.text "positive_financial_returns_en" t.text "positive_financial_returns_es" t.text "positive_financial_returns_pt" - t.text "last_year_sales_revenue_en" - t.text "last_year_sales_revenue_es" - t.text "last_year_sales_revenue_pt" + t.decimal "last_year_sales_revenue" t.text "climate_change_risks_details_en" t.text "climate_change_risks_details_es" t.text "climate_change_risks_details_pt" From decd87622dd00f221ceef0601d11e093810eb538 Mon Sep 17 00:00:00 2001 From: yulia-bel Date: Wed, 22 Nov 2023 15:57:59 +0100 Subject: [PATCH 08/10] Update form ans napshots with last_year_sales_revenue as decimal --- backend/app/models/project.rb | 1 - .../app/views/backoffice/projects/_form.html.erb | 2 +- backend/spec/factories/project.rb | 6 ++---- .../account/open-call-applications-create.json | 2 +- .../api/v1/account/projects-favourites.json | 2 +- .../snapshots/api/v1/account/projects.json | 6 +++--- .../api/v1/accounts-project-update.json | 2 +- ...-project-developer-include-relationships.json | 4 ++-- .../fixtures/snapshots/api/v1/get-project.json | 2 +- ...project-developers-include-relationships.json | 4 ++-- .../spec/fixtures/snapshots/api/v1/projects.json | 16 ++++++++-------- .../requests/api/v1/accounts/projects_spec.rb | 4 ++-- backend/spec/system/backoffice/projects_spec.rb | 4 ++-- 13 files changed, 26 insertions(+), 29 deletions(-) diff --git a/backend/app/models/project.rb b/backend/app/models/project.rb index ea57ee64a..e25d10c06 100644 --- a/backend/app/models/project.rb +++ b/backend/app/models/project.rb @@ -37,7 +37,6 @@ class Project < ApplicationRecord :progress_impact_tracking, :relevant_links, :positive_financial_returns, - :last_year_sales_revenue, :climate_change_risks_details enum status: ProjectStatus::TYPES_WITH_CODE, _default: :published diff --git a/backend/app/views/backoffice/projects/_form.html.erb b/backend/app/views/backoffice/projects/_form.html.erb index 1ba36dd71..01ca37e62 100644 --- a/backend/app/views/backoffice/projects/_form.html.erb +++ b/backend/app/views/backoffice/projects/_form.html.erb @@ -76,7 +76,7 @@ <%= t(".other_information") %>

<%= localized_input f, :positive_financial_returns, content_language, label: t("simple_form.labels.project.positive_financial_returns"), as: :text, input_html: {rows: 5} %> - <%= localized_input f, :last_year_sales_revenue, content_language, label: t("simple_form.labels.project.last_year_sales_revenue") %> + <%= f.input :last_year_sales_revenue, label: t("simple_form.labels.project.last_year_sales_revenue") %> <%= f.input :climate_change_risks_identified, label: t("simple_form.labels.project.climate_change_risks_identified"), as: :radio_buttons %> <%= localized_input f, :climate_change_risks_details, content_language, label: t("simple_form.labels.project.climate_change_risks_details"), as: :text, input_html: {rows: 5} %> diff --git a/backend/spec/factories/project.rb b/backend/spec/factories/project.rb index 506a19600..0bad9840f 100644 --- a/backend/spec/factories/project.rb +++ b/backend/spec/factories/project.rb @@ -54,10 +54,8 @@ Faker::Config.random = Random.new(n) Faker::Lorem.paragraph(sentence_count: 2) end - sequence(:last_year_sales_revenue) do |n| - Faker::Config.random = Random.new(n) - Faker::Lorem.paragraph(sentence_count: 1) - end + + last_year_sales_revenue { 10000} climate_change_risks_identified { true } diff --git a/backend/spec/fixtures/snapshots/api/v1/account/open-call-applications-create.json b/backend/spec/fixtures/snapshots/api/v1/account/open-call-applications-create.json index 2bcb2a746..f94a2f34a 100644 --- a/backend/spec/fixtures/snapshots/api/v1/account/open-call-applications-create.json +++ b/backend/spec/fixtures/snapshots/api/v1/account/open-call-applications-create.json @@ -144,7 +144,7 @@ "favourite": false, "funded": null, "positive_financial_returns": "Enim repellat pariatur. Earum modi eos.", - "last_year_sales_revenue": "Enim repellat pariatur.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Enim repellat pariatur. Earum modi eos.", "climate_change_risks_identified": true }, diff --git a/backend/spec/fixtures/snapshots/api/v1/account/projects-favourites.json b/backend/spec/fixtures/snapshots/api/v1/account/projects-favourites.json index 215bc55e2..e14257a46 100644 --- a/backend/spec/fixtures/snapshots/api/v1/account/projects-favourites.json +++ b/backend/spec/fixtures/snapshots/api/v1/account/projects-favourites.json @@ -108,7 +108,7 @@ "favourite": true, "funded": null, "positive_financial_returns": "Enim repellat pariatur. Earum modi eos.", - "last_year_sales_revenue": "Enim repellat pariatur.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Enim repellat pariatur. Earum modi eos.", "climate_change_risks_identified": true }, diff --git a/backend/spec/fixtures/snapshots/api/v1/account/projects.json b/backend/spec/fixtures/snapshots/api/v1/account/projects.json index 7b5f63261..a35be883f 100644 --- a/backend/spec/fixtures/snapshots/api/v1/account/projects.json +++ b/backend/spec/fixtures/snapshots/api/v1/account/projects.json @@ -108,7 +108,7 @@ "favourite": false, "funded": null, "positive_financial_returns": "Dolores fugiat nesciunt. Ut laborum dolores.", - "last_year_sales_revenue": "Dolores fugiat nesciunt.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Dolores fugiat nesciunt. Ut laborum dolores.", "climate_change_risks_identified": true }, @@ -260,7 +260,7 @@ "favourite": false, "funded": null, "positive_financial_returns": "Placeat commodi libero. Quo recusandae repellat.", - "last_year_sales_revenue": "Placeat commodi libero.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Placeat commodi libero. Quo recusandae repellat.", "climate_change_risks_identified": true }, @@ -412,7 +412,7 @@ "favourite": false, "funded": null, "positive_financial_returns": "Enim repellat pariatur. Earum modi eos.", - "last_year_sales_revenue": "Enim repellat pariatur.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Enim repellat pariatur. Earum modi eos.", "climate_change_risks_identified": true }, diff --git a/backend/spec/fixtures/snapshots/api/v1/accounts-project-update.json b/backend/spec/fixtures/snapshots/api/v1/accounts-project-update.json index b880f771f..69b533b80 100644 --- a/backend/spec/fixtures/snapshots/api/v1/accounts-project-update.json +++ b/backend/spec/fixtures/snapshots/api/v1/accounts-project-update.json @@ -78,7 +78,7 @@ "project_community_impact": null, "project_total_impact": null, "positive_financial_returns": "Updated financial returns data", - "last_year_sales_revenue": "Updated year sales revenues", + "last_year_sales_revenue": "20000.0", "climate_change_risks_details": "Updated climate risk details", "climate_change_risks_identified": true }, diff --git a/backend/spec/fixtures/snapshots/api/v1/get-project-developer-include-relationships.json b/backend/spec/fixtures/snapshots/api/v1/get-project-developer-include-relationships.json index e1d5376cb..7282884ef 100644 --- a/backend/spec/fixtures/snapshots/api/v1/get-project-developer-include-relationships.json +++ b/backend/spec/fixtures/snapshots/api/v1/get-project-developer-include-relationships.json @@ -129,7 +129,7 @@ "favourite": null, "funded": null, "positive_financial_returns": "Enim repellat pariatur. Earum modi eos.", - "last_year_sales_revenue": "Enim repellat pariatur.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Enim repellat pariatur. Earum modi eos.", "climate_change_risks_identified": true }, @@ -284,7 +284,7 @@ "favourite": null, "funded": null, "positive_financial_returns": "Placeat commodi libero. Quo recusandae repellat.", - "last_year_sales_revenue": "Placeat commodi libero.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Placeat commodi libero. Quo recusandae repellat.", "climate_change_risks_identified": true }, diff --git a/backend/spec/fixtures/snapshots/api/v1/get-project.json b/backend/spec/fixtures/snapshots/api/v1/get-project.json index 2d4a884de..674a78334 100644 --- a/backend/spec/fixtures/snapshots/api/v1/get-project.json +++ b/backend/spec/fixtures/snapshots/api/v1/get-project.json @@ -99,7 +99,7 @@ "project_community_impact": null, "project_total_impact": null, "positive_financial_returns": "Enim repellat pariatur. Earum modi eos.", - "last_year_sales_revenue": "Enim repellat pariatur.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Enim repellat pariatur. Earum modi eos.", "climate_change_risks_identified": true }, diff --git a/backend/spec/fixtures/snapshots/api/v1/project-developers-include-relationships.json b/backend/spec/fixtures/snapshots/api/v1/project-developers-include-relationships.json index 45c152227..23c040ab9 100644 --- a/backend/spec/fixtures/snapshots/api/v1/project-developers-include-relationships.json +++ b/backend/spec/fixtures/snapshots/api/v1/project-developers-include-relationships.json @@ -257,7 +257,7 @@ "favourite": null, "funded": null, "positive_financial_returns": "Enim repellat pariatur. Earum modi eos.", - "last_year_sales_revenue": "Enim repellat pariatur.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Enim repellat pariatur. Earum modi eos.", "climate_change_risks_identified": true }, @@ -412,7 +412,7 @@ "favourite": null, "funded": null, "positive_financial_returns": "Placeat commodi libero. Quo recusandae repellat.", - "last_year_sales_revenue": "Placeat commodi libero.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Placeat commodi libero. Quo recusandae repellat.", "climate_change_risks_identified": true }, diff --git a/backend/spec/fixtures/snapshots/api/v1/projects.json b/backend/spec/fixtures/snapshots/api/v1/projects.json index b952655df..d3f2409d0 100644 --- a/backend/spec/fixtures/snapshots/api/v1/projects.json +++ b/backend/spec/fixtures/snapshots/api/v1/projects.json @@ -108,7 +108,7 @@ "favourite": null, "funded": null, "positive_financial_returns": "Placeat commodi libero. Quo recusandae repellat.", - "last_year_sales_revenue": "Placeat commodi libero.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Placeat commodi libero. Quo recusandae repellat.", "climate_change_risks_identified": true }, @@ -260,7 +260,7 @@ "favourite": null, "funded": null, "positive_financial_returns": "Et quaerat omnis. Harum voluptas atque.", - "last_year_sales_revenue": "Et quaerat omnis.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Et quaerat omnis. Harum voluptas atque.", "climate_change_risks_identified": true }, @@ -412,7 +412,7 @@ "favourite": null, "funded": null, "positive_financial_returns": "Dolores fugiat nesciunt. Ut laborum dolores.", - "last_year_sales_revenue": "Dolores fugiat nesciunt.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Dolores fugiat nesciunt. Ut laborum dolores.", "climate_change_risks_identified": true }, @@ -564,7 +564,7 @@ "favourite": null, "funded": null, "positive_financial_returns": "Autem et et. Voluptatem neque quibusdam.", - "last_year_sales_revenue": "Autem et et.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Autem et et. Voluptatem neque quibusdam.", "climate_change_risks_identified": true }, @@ -716,7 +716,7 @@ "favourite": null, "funded": null, "positive_financial_returns": "Porro soluta beatae. Quia ratione facilis.", - "last_year_sales_revenue": "Porro soluta beatae.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Porro soluta beatae. Quia ratione facilis.", "climate_change_risks_identified": true }, @@ -868,7 +868,7 @@ "favourite": null, "funded": null, "positive_financial_returns": "Mollitia aut vel. Qui illum accusantium.", - "last_year_sales_revenue": "Mollitia aut vel.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Mollitia aut vel. Qui illum accusantium.", "climate_change_risks_identified": true }, @@ -1020,7 +1020,7 @@ "favourite": null, "funded": null, "positive_financial_returns": "Tempora excepturi et. Et quia sit.", - "last_year_sales_revenue": "Tempora excepturi et.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Tempora excepturi et. Et quia sit.", "climate_change_risks_identified": true }, @@ -1164,7 +1164,7 @@ "favourite": null, "funded": null, "positive_financial_returns": "Enim repellat pariatur. Earum modi eos.", - "last_year_sales_revenue": "Enim repellat pariatur.", + "last_year_sales_revenue": "10000.0", "climate_change_risks_details": "Enim repellat pariatur. Earum modi eos.", "climate_change_risks_identified": true }, diff --git a/backend/spec/requests/api/v1/accounts/projects_spec.rb b/backend/spec/requests/api/v1/accounts/projects_spec.rb index e58f04a79..473543c76 100644 --- a/backend/spec/requests/api/v1/accounts/projects_spec.rb +++ b/backend/spec/requests/api/v1/accounts/projects_spec.rb @@ -30,7 +30,7 @@ received_funding_amount_usd: {type: :number}, received_funding_investor: {type: :string}, positive_financial_returns: {type: :string}, - last_year_sales_revenue: {type: :string}, + last_year_sales_revenue: {type: :number}, climate_change_risks_details: {type: :string}, climate_change_risks_identified: {type: :boolean}, replicability: {type: :string}, @@ -303,7 +303,7 @@ instrument_types: %w[grant], locale: :en, positive_financial_returns: "Updated financial returns data", - last_year_sales_revenue: "Updated year sales revenues", + last_year_sales_revenue: 20000, climate_change_risks_details: "Updated climate risk details", climate_change_risks_identified: true } diff --git a/backend/spec/system/backoffice/projects_spec.rb b/backend/spec/system/backoffice/projects_spec.rb index 2a4658c4d..71756989e 100644 --- a/backend/spec/system/backoffice/projects_spec.rb +++ b/backend/spec/system/backoffice/projects_spec.rb @@ -198,7 +198,7 @@ fill_in t("simple_form.labels.project.received_funding_amount_usd"), with: 10000 fill_in t("simple_form.labels.project.received_funding_investor"), with: "Investor" fill_in t("simple_form.labels.project.positive_financial_returns"), with: "Positive financial returns" - fill_in t("simple_form.labels.project.last_year_sales_revenue"), with: "Last year sales revenue" + fill_in t("simple_form.labels.project.last_year_sales_revenue"), with: 10000 choose "Yes", name: "project[climate_change_risks_identified]" fill_in t("simple_form.labels.project.climate_change_risks_details"), with: "Climate change risks identified" fill_in t("simple_form.labels.project.replicability"), with: "New replicability" @@ -238,7 +238,7 @@ expect(project.received_funding_amount_usd).to eq(10000) expect(project.received_funding_investor).to eq("Investor") expect(project.positive_financial_returns).to eq("Positive financial returns") - expect(project.last_year_sales_revenue).to eq("Last year sales revenue") + expect(project.last_year_sales_revenue).to eq(10000) expect(project.climate_change_risks_identified).to be_truthy expect(project.climate_change_risks_details).to eq("Climate change risks identified") expect(project.replicability).to eq("New replicability") From a47bf84f3630aa4290a306c8e7d95457950b7924 Mon Sep 17 00:00:00 2001 From: yulia-bel Date: Wed, 22 Nov 2023 16:05:35 +0100 Subject: [PATCH 09/10] Update swagger helper servers urls --- backend/swagger/v1/swagger.yaml | 1033 ++++++++++++++++--------------- 1 file changed, 517 insertions(+), 516 deletions(-) diff --git a/backend/swagger/v1/swagger.yaml b/backend/swagger/v1/swagger.yaml index d483657ac..b55e92565 100644 --- a/backend/swagger/v1/swagger.yaml +++ b/backend/swagger/v1/swagger.yaml @@ -40,7 +40,7 @@ paths: application/json: example: data: - id: 3d9466df-2525-4f8e-9770-d06ebb800a0d + id: d3a985b8-ea15-4732-a95d-1682283009c3 type: investor attributes: name: Kutch-Spencer @@ -79,7 +79,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T11:53:54.259Z' + created_at: '2023-11-22T14:58:50.272Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -91,11 +91,11 @@ paths: relationships: owner: data: - id: 104895aa-6965-4b5d-8dae-09805ee825b4 + id: a36d5d8d-b7c6-4841-bc35-d3d994b01417 type: user open_calls: data: - - id: 3de9652c-94c9-4051-a0f1-826154346d33 + - id: ec3b453d-9dc2-4817-bcdc-15bef1c510f4 type: open_call schema: type: object @@ -125,7 +125,7 @@ paths: application/json: example: data: - id: 3c794ddd-3e01-4d81-b743-3530e9f0808e + id: c6fbea4f-2de0-459e-a9e2-d4d6c51e7e9f type: investor attributes: name: Name @@ -159,7 +159,7 @@ paths: language: es account_language: es review_status: unapproved - created_at: '2023-11-22T11:53:54.712Z' + created_at: '2023-11-22T14:58:50.761Z' contact_email: contact_phone: picture: @@ -171,7 +171,7 @@ paths: relationships: owner: data: - id: e171a902-096c-4ffd-a48a-74a381fcd65e + id: 0ea22bec-3a99-42db-b84f-6e01c721f1eb type: user open_calls: data: [] @@ -343,7 +343,7 @@ paths: application/json: example: data: - id: c4f02709-0ea3-4c5f-9297-9264149d57fc + id: 7d6dd33b-13f2-4df2-9e03-e9a50426d2ac type: investor attributes: name: Name @@ -377,7 +377,7 @@ paths: language: es account_language: es review_status: approved - created_at: '2023-11-22T11:53:55.009Z' + created_at: '2023-11-22T14:58:51.080Z' contact_email: contact@example.com contact_phone: '123456789' picture: @@ -389,7 +389,7 @@ paths: relationships: owner: data: - id: 7419c66b-51b1-4315-9988-fd250a9ad3b5 + id: 783dfa13-eee6-4ce6-a151-e71b15c705cd type: user open_calls: data: [] @@ -566,7 +566,7 @@ paths: application/json: example: data: - - id: cb407230-bfea-4f40-b565-04421c548f7b + - id: f6a89bfb-71b7-48de-a727-ca8c38a7c0df type: investor attributes: name: Bartoletti and Sons @@ -605,7 +605,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T11:53:55.490Z' + created_at: '2023-11-22T14:58:51.567Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -617,7 +617,7 @@ paths: relationships: owner: data: - id: 2e46eca7-e340-4510-a64c-70611aa35116 + id: 4879f006-2e78-410e-9ecd-b4d7c4904514 type: user open_calls: data: [] @@ -705,55 +705,55 @@ paths: application/json: example: data: - - id: ad8bfb1c-5c56-4a85-ae73-b7d4aa27d362 + - id: 9e1ee716-dd17-4724-91f6-a9697d1511e8 type: open_call_application attributes: message: Dolores fugiat nesciunt. Ut laborum dolores. Sit neque eos. Expedita molestiae quia. funded: false - created_at: '2023-11-22T11:54:06.296Z' - updated_at: '2023-11-22T11:54:06.296Z' + created_at: '2023-11-22T14:59:02.677Z' + updated_at: '2023-11-22T14:59:02.677Z' relationships: open_call: data: - id: 814e2bcb-14ac-47f2-ad99-36bd0f3a8999 + id: 0d7687bd-4250-4e57-bd5f-108e9d06d583 type: open_call project: data: - id: 710bd412-85d7-4bc7-be87-33192d84293f + id: 5af5f060-6c12-4beb-bad1-77c9302d1bf0 type: project project_developer: data: - id: efcced57-ad1a-4b54-8a87-5fb6b8b1a88f + id: d3f5a333-7695-43fd-a43e-db5527e413c6 type: project_developer investor: data: - id: 954738de-8855-4508-89f9-b1f3f1d104e8 + id: dd37fbc6-2c16-499f-a500-fe6b67b0409f type: investor - - id: 7ef84627-6049-4b22-8ae4-8ff511e7ba76 + - id: 3366b885-78fd-4757-b3cb-9945a5254694 type: open_call_application attributes: message: Et quaerat omnis. Harum voluptas atque. Quo nesciunt voluptas. Suscipit ex cum. funded: false - created_at: '2023-11-22T11:54:06.208Z' - updated_at: '2023-11-22T11:54:06.208Z' + created_at: '2023-11-22T14:59:02.590Z' + updated_at: '2023-11-22T14:59:02.590Z' relationships: open_call: data: - id: e1f39fdc-67a4-4778-899e-6e95f7b35ed4 + id: 5b238129-00aa-47e5-a666-6fddd30d0d1a type: open_call project: data: - id: 9b2370b6-c6b1-4d98-a211-ac3fbd9e9a4d + id: 87cfba4f-1e7b-48e6-8e35-74ea2e44463b type: project project_developer: data: - id: 38ae5815-8489-4cd6-b645-f5bbc12773ae + id: d20e5d72-3ff6-4e69-9279-d0a66013f5fc type: project_developer investor: data: - id: 954738de-8855-4508-89f9-b1f3f1d104e8 + id: dd37fbc6-2c16-499f-a500-fe6b67b0409f type: investor schema: type: object @@ -794,32 +794,32 @@ paths: application/json: example: data: - id: f43fc68a-1025-41fb-b066-a4af6dab62aa + id: 21a0f0ff-e66c-4b5e-be0e-3eda6f6daa89 type: open_call_application attributes: message: This is message funded: false - created_at: '2023-11-22T11:54:09.254Z' - updated_at: '2023-11-22T11:54:09.254Z' + created_at: '2023-11-22T14:59:05.435Z' + updated_at: '2023-11-22T14:59:05.435Z' relationships: open_call: data: - id: d39a7a41-c53e-490d-8406-ec83daefd41c + id: 1eec7ee4-8bd8-4f44-9adc-b88b5adad78b type: open_call project: data: - id: c6109a2a-7914-4d51-8f66-3890f2844490 + id: 5431ba85-7342-4e60-92c3-a27253247451 type: project project_developer: data: - id: e7ba700c-aca4-4331-bdc6-7f6f8f7ec793 + id: 37859cda-38ad-48f1-bff5-52c7cf2481a5 type: project_developer investor: data: - id: de53d6d0-f27c-4721-9ab4-c9327eeffbd1 + id: 62d6b6b3-796c-47c3-a648-72b81272facc type: investor included: - - id: c6109a2a-7914-4d51-8f66-3890f2844490 + - id: 5431ba85-7342-4e60-92c3-a27253247451 type: project attributes: name: Project 1 @@ -884,8 +884,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T11:54:09.174Z' - updated_at: '2023-11-22T11:54:09.174Z' + created_at: '2023-11-22T14:59:05.366Z' + updated_at: '2023-11-22T14:59:05.366Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -909,7 +909,7 @@ paths: impact_calculated: false positive_financial_returns: Enim repellat pariatur. Earum modi eos. - last_year_sales_revenue: Enim repellat pariatur. + last_year_sales_revenue: '10000.0' climate_change_risks_details: Enim repellat pariatur. Earum modi eos. climate_change_risks_identified: true @@ -920,19 +920,19 @@ paths: relationships: project_developer: data: - id: e7ba700c-aca4-4331-bdc6-7f6f8f7ec793 + id: 37859cda-38ad-48f1-bff5-52c7cf2481a5 type: project_developer country: data: - id: 18f3fc90-28a5-49ad-bca1-d9e0fffef615 + id: b9944732-71cb-42cd-8a07-6e0158c5d6ae type: location municipality: data: - id: 5c6ddd85-4de8-4077-b2c7-2a5a71404a01 + id: f3a5dbf6-58f0-4619-aa85-9ed3447b0f2c type: location department: data: - id: 7d96cbb6-7664-4426-adc5-f75094a8fb37 + id: 6817a98b-7262-4451-aec0-6730f4708985 type: location priority_landscape: data: @@ -940,7 +940,7 @@ paths: data: [] project_images: data: [] - - id: e7ba700c-aca4-4331-bdc6-7f6f8f7ec793 + - id: 37859cda-38ad-48f1-bff5-52c7cf2481a5 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-22T11:54:09.128Z' + created_at: '2023-11-22T14:59:05.325Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -977,19 +977,19 @@ paths: relationships: owner: data: - id: 80a4991d-150c-4460-96a6-98a2e9bc63b9 + id: 7a4b21a9-a324-4192-832d-070a44faf98d type: user projects: data: - - id: c6109a2a-7914-4d51-8f66-3890f2844490 + - id: 5431ba85-7342-4e60-92c3-a27253247451 type: project involved_projects: data: [] priority_landscapes: data: - - id: 82d1b681-390f-49a6-8d45-b0f4224ca6b1 + - id: f7d95458-4b84-4982-9224-95a8c1d32a0d type: location - - id: 6909fc4a-24ce-4ece-af8f-6eaa6705026d + - id: 66f3a2eb-8f97-4dc1-a694-4b94a058be93 type: location schema: type: object @@ -1077,30 +1077,30 @@ paths: application/json: example: data: - id: 26354c60-c8de-472e-8d6a-5db5f4f5c046 + id: 8f8b8bcf-4441-4324-b422-1fe0611c9d30 type: open_call_application attributes: message: Enim repellat pariatur. Earum modi eos. Libero tempora exercitationem. Qui dolorem quo. funded: false - created_at: '2023-11-22T11:54:11.963Z' - updated_at: '2023-11-22T11:54:11.963Z' + created_at: '2023-11-22T14:59:07.958Z' + updated_at: '2023-11-22T14:59:07.958Z' relationships: open_call: data: - id: 409f934b-7733-4207-81ac-9e3ae3772fde + id: 1d85c06b-9e53-49c5-b2c8-acb79b942087 type: open_call project: data: - id: 146a3cb5-ad5f-4627-a853-94d79e27bb15 + id: b0d5ccaf-8491-4b82-b49d-20c66260aa03 type: project project_developer: data: - id: cd182eeb-b84b-44a6-9ba3-bb46263cb16b + id: 25732af7-f00f-453a-92df-9b90099c71d1 type: project_developer investor: data: - id: 5a5fc079-3423-4e80-a647-a5020bb859ec + id: edc581ad-3169-4f0d-a3d1-bd179b511601 type: investor schema: type: object @@ -1154,29 +1154,29 @@ paths: application/json: example: data: - id: e7b9bbd3-d403-4ab4-84b4-6c983a4dece7 + id: 04271ed4-5b99-43c8-98ef-8adf0807c6f0 type: open_call_application attributes: message: This is updated text funded: false - created_at: '2023-11-22T11:54:13.044Z' - updated_at: '2023-11-22T11:54:13.061Z' + created_at: '2023-11-22T14:59:09.014Z' + updated_at: '2023-11-22T14:59:09.032Z' relationships: open_call: data: - id: 626c1744-19b8-4765-9cb0-1c567f4406ec + id: 4014b037-4cc2-4069-9751-0b53e4ef3719 type: open_call project: data: - id: 87bdf10b-220c-44bd-b33f-e1120d79e8da + id: 58295ec2-2799-4184-baca-ae8490eeb163 type: project project_developer: data: - id: 147a9322-6a90-479b-8379-7d15c01779fd + id: e24339e5-513f-4829-b37b-753d171f4a62 type: project_developer investor: data: - id: 229bc148-0f54-41bf-8e50-3232fc1bca03 + id: 0b660a6e-9e80-42ee-92e3-6ec8745ec3d4 type: investor schema: type: object @@ -1387,7 +1387,7 @@ paths: application/json: example: data: - - id: 75c87c5c-0d53-4523-bc50-9f85a23c0a6b + - id: 545779f3-53d1-4c0c-afd9-e2a7fe6a651b 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-22T11:54:18.217Z' + closing_at: '2024-09-22T14:59:14.331Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T11:54:18.219Z' - updated_at: '2023-11-22T11:54:18.226Z' + created_at: '2023-11-22T14:59:14.334Z' + updated_at: '2023-11-22T14:59:14.340Z' open_call_applications_count: 0 picture: analyzed: false @@ -1424,21 +1424,21 @@ paths: relationships: investor: data: - id: cc41d9c9-ec6c-42b5-8037-1930a97f250a + id: f70e7844-a098-47c2-a380-d2c9e155b6a5 type: investor country: data: - id: ef7fc4a3-1785-4f7c-807d-5399962402a8 + id: 3acc1376-5f34-4450-aa03-c44e40035356 type: location municipality: data: - id: 0c2636f6-c6eb-4776-b591-03de17b87c0b + id: ac72bfe7-04f0-415e-9615-8a352cb7369d type: location department: data: - id: 75d9256c-db16-42f7-a42b-ca45e22f8d96 + id: 5ac4cb22-c206-4cdd-9993-7feb1834acd4 type: location - - id: d571e7b5-3cda-4e80-b354-999e69cbe9f0 + - id: 04f65587-7688-4fe9-a2a9-885d2a62a4a9 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-22T11:54:18.195Z' + closing_at: '2024-09-22T14:59:14.308Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T11:54:18.197Z' - updated_at: '2023-11-22T11:54:18.204Z' + created_at: '2023-11-22T14:59:14.310Z' + updated_at: '2023-11-22T14:59:14.318Z' open_call_applications_count: 0 picture: analyzed: false @@ -1475,21 +1475,21 @@ paths: relationships: investor: data: - id: cc41d9c9-ec6c-42b5-8037-1930a97f250a + id: f70e7844-a098-47c2-a380-d2c9e155b6a5 type: investor country: data: - id: ed36a61c-41d5-4949-8a2e-6853db57b2fd + id: efcb408c-a37e-4f45-9b62-597f08d4e7e7 type: location municipality: data: - id: 5ba6adfe-7b41-4593-86fe-afee575afada + id: 27f32a6d-6d88-44c8-99e8-4dc0f1f6f267 type: location department: data: - id: 892c69d6-1417-4f34-8044-cd27cef63fa5 + id: 845820e5-579f-47e8-bc2d-28756cb7d6b4 type: location - - id: 810a3537-fb9c-49a9-b4d5-b1ef2bfcf9f7 + - id: '0079b1ba-01d7-45a0-9cc5-ff2752689aa2' 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-22T11:54:18.172Z' + closing_at: '2024-09-22T14:59:14.286Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T11:54:18.175Z' - updated_at: '2023-11-22T11:54:18.182Z' + created_at: '2023-11-22T14:59:14.288Z' + updated_at: '2023-11-22T14:59:14.295Z' open_call_applications_count: 0 picture: analyzed: false @@ -1526,21 +1526,21 @@ paths: relationships: investor: data: - id: cc41d9c9-ec6c-42b5-8037-1930a97f250a + id: f70e7844-a098-47c2-a380-d2c9e155b6a5 type: investor country: data: - id: 41d1a4ef-b648-42e0-a754-ec48ee253a8f + id: c1753ced-98a3-40c3-b1eb-acfb1a967fb8 type: location municipality: data: - id: e7537ae0-10a1-4fee-be1a-9f5f2fdea436 + id: 2f5b5b3c-db15-40c1-ba45-54454bf0b9e4 type: location department: data: - id: 69628334-a358-4109-8d81-271444a0dde1 + id: 9f37e8f2-ed55-4da0-bf05-9993ec644633 type: location - - id: cbd0dc32-702c-44d4-a379-46c202b57611 + - id: 254e8ef0-8b0c-4138-9678-87b4748b7640 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-22T11:54:18.150Z' + closing_at: '2024-09-22T14:59:14.264Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T11:54:18.152Z' - updated_at: '2023-11-22T11:54:18.159Z' + created_at: '2023-11-22T14:59:14.266Z' + updated_at: '2023-11-22T14:59:14.273Z' open_call_applications_count: 0 picture: analyzed: false @@ -1577,21 +1577,21 @@ paths: relationships: investor: data: - id: cc41d9c9-ec6c-42b5-8037-1930a97f250a + id: f70e7844-a098-47c2-a380-d2c9e155b6a5 type: investor country: data: - id: 103361e1-5103-44d5-b94a-a925fd333343 + id: 6fa97b6a-bc4a-4a9e-9b89-9804aaaf8e4b type: location municipality: data: - id: efbb9fb0-4235-481f-9470-011cea1ec519 + id: '02791e2e-900e-4a2c-9bf0-cbcd625414d0' type: location department: data: - id: 43a376fc-786f-4393-861b-25e989dbefaf + id: 54d904fd-af20-4fc8-bfd3-05cb40e31657 type: location - - id: 90098cbd-91aa-4db0-8775-327d3ed8d38c + - id: baaac652-35f8-4659-8e03-ad99a63c0b19 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-22T11:54:18.127Z' + closing_at: '2024-09-22T14:59:14.240Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T11:54:18.129Z' - updated_at: '2023-11-22T11:54:18.136Z' + created_at: '2023-11-22T14:59:14.242Z' + updated_at: '2023-11-22T14:59:14.249Z' open_call_applications_count: 0 picture: analyzed: false @@ -1628,21 +1628,21 @@ paths: relationships: investor: data: - id: cc41d9c9-ec6c-42b5-8037-1930a97f250a + id: f70e7844-a098-47c2-a380-d2c9e155b6a5 type: investor country: data: - id: 3943ca74-eb10-4861-910c-c189285bcc7c + id: 82f605ba-90a1-45da-8ed4-5a98de4a6a3c type: location municipality: data: - id: 5b6037d1-ea83-40e1-8f57-3e8aea6b0d6f + id: 341405ce-92b5-4b04-9f1b-a7c9353dce88 type: location department: data: - id: 9533b264-83da-4983-aa4c-788eaebfed2e + id: 0bce9e17-0cff-4d69-bf1e-43d661b1d261 type: location - - id: 5ce6e959-2e6c-4162-bf79-fd347bd36dde + - id: 28e66dbf-bebe-48f4-b2bb-b812be258c0a 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-22T11:54:18.105Z' + closing_at: '2024-09-22T14:59:14.219Z' status: draft language: en account_language: es verified: false - created_at: '2023-11-22T11:54:18.107Z' - updated_at: '2023-11-22T11:54:18.114Z' + created_at: '2023-11-22T14:59:14.221Z' + updated_at: '2023-11-22T14:59:14.228Z' open_call_applications_count: 0 picture: analyzed: false @@ -1679,19 +1679,19 @@ paths: relationships: investor: data: - id: cc41d9c9-ec6c-42b5-8037-1930a97f250a + id: f70e7844-a098-47c2-a380-d2c9e155b6a5 type: investor country: data: - id: 11557d58-e6ac-4703-b13b-e3ffbdde86c7 + id: f47886f0-94f5-40c2-92cb-463cc39dc16b type: location municipality: data: - id: 81a7bff5-deab-4f97-9a13-04b44abda9a2 + id: f5278e31-42cf-4c09-9743-b826919bb148 type: location department: data: - id: dd5aa5f4-d8c4-411e-9199-c731659e40ec + id: 5ba92209-9347-4a18-9c49-c7dfa122a66a type: location schema: type: object @@ -1732,7 +1732,7 @@ paths: application/json: example: data: - id: 14435dae-da3f-4173-86ed-9e782eff7073 + id: 9dc0387f-715d-48e5-82ba-5b4830dbc900 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-23T11:54:21.112Z' + closing_at: '2023-11-23T14:59:17.254Z' status: draft language: es account_language: es verified: false - created_at: '2023-11-22T11:54:21.127Z' - updated_at: '2023-11-22T11:54:21.134Z' + created_at: '2023-11-22T14:59:17.268Z' + updated_at: '2023-11-22T14:59:17.274Z' open_call_applications_count: 0 picture: analyzed: false @@ -1765,19 +1765,19 @@ paths: relationships: investor: data: - id: 12fea537-5706-4d7b-86cb-ab3abd783cd6 + id: 5fbcad76-7965-4512-aa9a-529feac98a0f type: investor country: data: - id: 78b80f9c-dac7-4c55-9a66-2779925b1ec1 + id: 63c51047-0197-481f-a771-cc9c7d90b1a6 type: location municipality: data: - id: 6a7a405a-1459-412e-8ae7-2d4992c8057b + id: 00c1e16f-b4fa-4e50-85d1-c0290ffaa535 type: location department: data: - id: 694e0c9e-85d7-40f8-8400-4e74140ecfa7 + id: 74e9c8fc-6c6a-4d48-aed2-de6d00a3da3b type: location schema: type: object @@ -1918,7 +1918,7 @@ paths: application/json: example: data: - id: df89f887-e756-406b-b01e-6c3cb29a4978 + id: ce2e6b60-8fda-4f0b-aa9d-ebdd9ff8cfb7 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-02T11:54:22.513Z' + closing_at: '2023-12-02T14:59:18.450Z' status: launched language: en account_language: es verified: false - created_at: '2023-11-22T11:54:22.483Z' - updated_at: '2023-11-22T11:54:22.533Z' + created_at: '2023-11-22T14:59:18.424Z' + updated_at: '2023-11-22T14:59:18.468Z' open_call_applications_count: 0 picture: analyzed: false @@ -1950,19 +1950,19 @@ paths: relationships: investor: data: - id: bddebc42-ac48-488b-88fe-8cf6db579715 + id: 398b7fec-9c1e-4946-ab1e-fbbfa38b1ced type: investor country: data: - id: 9a63b78f-4a8d-44a2-9a07-5bee79b28280 + id: a483dc27-b386-4547-8ed0-9884ddc3e527 type: location municipality: data: - id: 9fe959a6-bc2c-48cc-920b-4ad6990c7d5b + id: 21bf5d7e-c124-4ba3-96a9-9e02583d726e type: location department: data: - id: 59bb2196-7ee1-47a8-9cce-833ca6a246ac + id: af313905-9614-4ddf-b188-3be07b656fdb type: location schema: type: object @@ -2147,7 +2147,7 @@ paths: application/json: example: data: - - id: 7f96ba92-be2d-49fa-8d23-f1a66b7fce0c + - id: 88becb76-7132-42de-9107-c43fdde58813 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-22T11:54:25.054Z' + closing_at: '2024-09-22T14:59:20.893Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T11:54:25.056Z' - updated_at: '2023-11-22T11:54:25.063Z' + created_at: '2023-11-22T14:59:20.896Z' + updated_at: '2023-11-22T14:59:20.902Z' open_call_applications_count: 0 picture: analyzed: false @@ -2184,19 +2184,19 @@ paths: relationships: investor: data: - id: 3aaf468a-4839-46b2-a7ee-5cf8287f5e16 + id: 8b5e3859-fc91-40b7-ae4e-e9e9935d72dc type: investor country: data: - id: a4441adf-4324-4418-a99e-f467fa71789b + id: 39deb2d8-14a7-4b4f-b38a-08becd4cc0c1 type: location municipality: data: - id: 6a0c47d3-096a-4d33-823d-491fe5c83ae0 + id: e495ccaf-0f71-4c30-a727-315b913ba96b type: location department: data: - id: cd46394e-75de-4a2b-a2c7-ea99a38c74ca + id: 1f9caaff-4c31-4678-a627-449c343691d3 type: location meta: page: 1 @@ -2256,7 +2256,7 @@ paths: application/json: example: data: - id: 7a77197b-21b9-486c-800c-da5de58ef1eb + id: c90a981b-290a-422c-9645-be4364ee7a5b 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-22T11:54:26.995Z' + created_at: '2023-11-22T14:59:22.667Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -2293,23 +2293,23 @@ paths: relationships: owner: data: - id: eaf429bb-c959-4139-9381-c10c586d8626 + id: 64ced4a2-e899-403b-bb47-9663eb16fed3 type: user projects: data: - - id: ca8f127e-0704-4be4-a64e-48088ab02b62 + - id: 7cf7150b-64e2-4b92-93ab-6d6df5547d7a type: project involved_projects: data: - - id: 76f21d8d-2364-4f86-85af-43ede6e38376 + - id: ec07d7dd-296d-470d-9237-51b4884a6ef0 type: project - - id: adaab63d-2aa1-450a-83f2-d66ae004e342 + - id: ea8af7e6-60f4-4e8e-9d54-ab0c3a041ceb type: project priority_landscapes: data: - - id: 8c21a575-c963-42eb-a5b9-5712bd95fbb5 + - id: 837ec7a7-5704-42bd-8bfb-62fdd03ab063 type: location - - id: a233f66b-4c7c-4d12-aaa4-60763a28dd2b + - id: bd7aca04-c73a-4746-9b90-ffcaa846391e type: location schema: type: object @@ -2339,7 +2339,7 @@ paths: application/json: example: data: - id: edcdf7e1-d733-46f9-904b-83612210a57a + id: 4d474698-c64c-4ccb-a492-7cd7d52aa472 type: project_developer attributes: name: Name @@ -2362,7 +2362,7 @@ paths: account_language: es entity_legal_registration_number: '564823570' review_status: unapproved - created_at: '2023-11-22T11:54:27.597Z' + created_at: '2023-11-22T14:59:23.241Z' contact_email: contact_phone: picture: @@ -2374,7 +2374,7 @@ paths: relationships: owner: data: - id: 6f67cb35-4c2f-42d7-8de5-2cb5df02ac79 + id: 2a9dc71b-b322-4f6f-a4d2-87edb945dc13 type: user projects: data: [] @@ -2382,7 +2382,7 @@ paths: data: [] priority_landscapes: data: - - id: db63ea0d-a820-4257-b3cc-42b64b11cbf3 + - id: d09508a0-ba44-4509-aabe-911d42e96d75 type: location schema: type: object @@ -2508,7 +2508,7 @@ paths: application/json: example: data: - id: 256ea419-ac7b-4c7a-9d59-f3939009fe9d + id: 7fc78d3a-2d23-44bd-bf7f-d0847bba8340 type: project_developer attributes: name: Name @@ -2531,7 +2531,7 @@ paths: account_language: es entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T11:54:28.004Z' + created_at: '2023-11-22T14:59:23.693Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -2543,7 +2543,7 @@ paths: relationships: owner: data: - id: 6ea511cc-e1cd-46e5-9d69-b5d2f5c3e029 + id: 5d4c6113-f8d8-436a-b471-888f54e864ab type: user projects: data: [] @@ -2551,7 +2551,7 @@ paths: data: [] priority_landscapes: data: - - id: 73aedf13-4c69-4afa-9cc0-5ad45703e0dd + - id: 1501ed66-ef3a-437f-ba0e-5505d3905ddc type: location schema: type: object @@ -2682,7 +2682,7 @@ paths: application/json: example: data: - - id: 8cce4c4b-1ddc-41e0-bb0a-9eee48f4ce19 + - id: 15cf23d7-dcbb-488b-9117-6eceaf753ba2 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-22T11:54:28.569Z' + created_at: '2023-11-22T14:59:24.313Z' contact_email: contact@example.com contact_phone: "+57-1-xxx-xx-xx" picture: @@ -2719,7 +2719,7 @@ paths: relationships: owner: data: - id: f7e85398-4dfa-4fed-a510-eacbdea66bbd + id: 84d00c03-416d-4635-8bef-8655f12fd474 type: user projects: data: [] @@ -2727,9 +2727,9 @@ paths: data: [] priority_landscapes: data: - - id: f98bfb7d-377c-4744-9fcf-1ad193977a60 + - id: c36ccb74-1421-4b70-87ec-d3216de0cb05 type: location - - id: baf1c6f9-68ad-4e48-a4f6-96d82f8c3ea6 + - id: 0d825b65-2742-4021-946b-64d7b34c3afd type: location meta: page: 1 @@ -2804,7 +2804,7 @@ paths: application/json: example: data: - - id: 937c95d4-7b33-4e4f-9481-0db979289c83 + - id: 4848ff7f-9205-4354-9a21-8e7b98bf6276 type: project attributes: name: Draft project @@ -2869,8 +2869,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T11:54:29.693Z' - updated_at: '2023-11-22T11:54:29.693Z' + created_at: '2023-11-22T14:59:25.267Z' + updated_at: '2023-11-22T14:59:25.267Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -2894,7 +2894,7 @@ paths: impact_calculated: false positive_financial_returns: Dolores fugiat nesciunt. Ut laborum dolores. - last_year_sales_revenue: Dolores fugiat nesciunt. + last_year_sales_revenue: '10000.0' climate_change_risks_details: Dolores fugiat nesciunt. Ut laborum dolores. climate_change_risks_identified: true @@ -2905,19 +2905,19 @@ paths: relationships: project_developer: data: - id: 95a03d9a-cacf-4e64-a585-0bbb1af907ca + id: 972d4668-3b07-4607-8297-5bff8d96f04a type: project_developer country: data: - id: 7e0196ef-34ca-4030-80bc-1979bb42d678 + id: 4f908a8f-6235-4087-a139-5b3f556e6622 type: location municipality: data: - id: 57bf48e3-262b-4aee-8cd8-ce2c00568909 + id: 8535129d-60f3-4622-9cef-bd9541c0b297 type: location department: data: - id: f9e30a9c-236d-4e86-9a4d-fa78ec377c54 + id: dc4202d5-92ac-4a81-98a3-35c869ce9e9a type: location priority_landscape: data: @@ -2925,7 +2925,7 @@ paths: data: [] project_images: data: [] - - id: 9e92250c-8ad4-4c60-9dcc-8e3a11ec8986 + - id: dbac198a-fd09-4653-8605-4c22f53389b5 type: project attributes: name: This PDs Project Amazing @@ -2990,8 +2990,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T11:54:29.589Z' - updated_at: '2023-11-22T11:54:29.589Z' + created_at: '2023-11-22T14:59:25.162Z' + updated_at: '2023-11-22T14:59:25.162Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -3015,7 +3015,7 @@ paths: impact_calculated: false positive_financial_returns: Placeat commodi libero. Quo recusandae repellat. - last_year_sales_revenue: Placeat commodi libero. + last_year_sales_revenue: '10000.0' climate_change_risks_details: Placeat commodi libero. Quo recusandae repellat. climate_change_risks_identified: true @@ -3026,19 +3026,19 @@ paths: relationships: project_developer: data: - id: 95a03d9a-cacf-4e64-a585-0bbb1af907ca + id: 972d4668-3b07-4607-8297-5bff8d96f04a type: project_developer country: data: - id: 4238dc25-d6ea-46e8-b889-c721ee830031 + id: 1a7932a9-18d0-4c7e-bcc9-1bbe919e5cc6 type: location municipality: data: - id: 522631d1-cafd-4394-8c1d-9a9c7ed8b9ee + id: 9486c2fd-4dbe-4538-8088-92032c1b497b type: location department: data: - id: f3fc85f1-3909-474f-baf2-621829aa9217 + id: cac6b179-aea6-4af8-8204-046ac959bb45 type: location priority_landscape: data: @@ -3046,7 +3046,7 @@ paths: data: [] project_images: data: [] - - id: 00a0de3d-b912-45f5-9055-48e651fe31c6 + - id: 3dc9e44e-7fa6-4b8b-b06d-70c20b2f52ab type: project attributes: name: This PDs Project Awesome @@ -3111,8 +3111,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T11:54:29.558Z' - updated_at: '2023-11-22T11:54:29.558Z' + created_at: '2023-11-22T14:59:25.130Z' + updated_at: '2023-11-22T14:59:25.130Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -3136,7 +3136,7 @@ paths: impact_calculated: false positive_financial_returns: Enim repellat pariatur. Earum modi eos. - last_year_sales_revenue: Enim repellat pariatur. + last_year_sales_revenue: '10000.0' climate_change_risks_details: Enim repellat pariatur. Earum modi eos. climate_change_risks_identified: true @@ -3147,19 +3147,19 @@ paths: relationships: project_developer: data: - id: 95a03d9a-cacf-4e64-a585-0bbb1af907ca + id: 972d4668-3b07-4607-8297-5bff8d96f04a type: project_developer country: data: - id: a3772ba0-3399-465e-9da3-56202a92c227 + id: bd731cc2-43f3-4a0a-bd49-cff9bcde8829 type: location municipality: data: - id: 7cd6c2cd-9de6-461e-a062-674b40590d84 + id: c4146a3c-13a5-4504-8fee-4137e45758be type: location department: data: - id: 7a3f3978-972d-4482-bc51-f204a172d760 + id: 44f3a430-3849-4d6f-8533-47a475f3d702 type: location priority_landscape: data: @@ -3206,7 +3206,7 @@ paths: application/json: example: data: - id: f462132b-7f4d-4413-9c1f-0e88a2d1d4af + id: 9b1d64f8-2778-4f54-bcd7-0b5764b1d4b1 type: project attributes: name: Project Name @@ -3263,8 +3263,8 @@ paths: - 1.5274297752414188 properties: {} verified: false - created_at: '2023-11-22T11:54:31.587Z' - updated_at: '2023-11-22T11:54:31.587Z' + created_at: '2023-11-22T14:59:27.080Z' + updated_at: '2023-11-22T14:59:27.080Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -3297,50 +3297,50 @@ paths: relationships: project_developer: data: - id: b115dc4f-d03b-4c19-97ed-afd9bea9df9b + id: 0b969752-edc6-4a12-a670-c2144e8d45a2 type: project_developer country: data: - id: efb4b696-fe6e-4705-89b3-1ab9f0bcd913 + id: 95fb16f0-96a7-469b-a264-f8dcba926207 type: location municipality: data: - id: 0cd53a94-5294-4b98-9c2e-ab63dc0b9e86 + id: 45d6bda3-4e7d-4009-9544-1459d740afad type: location department: data: - id: 228e2715-c5cd-4bcc-a782-51a2fff65a48 + id: 3efb6b10-0888-4e88-9ee8-ded50703b45b type: location priority_landscape: data: involved_project_developers: data: - - id: 44186792-cea4-49fa-8c02-703f43e9cac6 + - id: e30eef19-357a-4416-a8df-dd819cf97f50 type: project_developer - - id: 3856dc72-b0e6-49e3-b8bb-96d829fd5931 + - id: 499fc2fa-2fd9-435d-9b31-3a57dda80064 type: project_developer project_images: data: - - id: 501e8d2d-9ea0-4782-9a56-3e92a4d74809 + - id: 84b68da3-425d-4bf2-8bd4-44b2fd2695f6 type: project_image - - id: f953da55-8346-4a8a-87da-76a603b1bbe9 + - id: 425ddb2e-f2a7-4e10-b880-1fd96ffffa62 type: project_image included: - - id: 501e8d2d-9ea0-4782-9a56-3e92a4d74809 + - id: 84b68da3-425d-4bf2-8bd4-44b2fd2695f6 type: project_image attributes: cover: true - created_at: '2023-11-22T11:54:31.592Z' + created_at: '2023-11-22T14:59:27.090Z' file: analyzed: false small: medium: original: - - id: f953da55-8346-4a8a-87da-76a603b1bbe9 + - id: 425ddb2e-f2a7-4e10-b880-1fd96ffffa62 type: project_image attributes: cover: false - created_at: '2023-11-22T11:54:31.597Z' + created_at: '2023-11-22T14:59:27.095Z' file: analyzed: false small: @@ -3423,7 +3423,7 @@ paths: positive_financial_returns: type: string last_year_sales_revenue: - type: string + type: number climate_change_risks_details: type: string climate_change_risks_identified: @@ -3595,7 +3595,7 @@ paths: application/json: example: data: - id: 39aa05c6-f25f-484d-aaf9-7a947edc4161 + id: 6184a98f-532f-4810-b3ad-14be80c395fc type: project attributes: name: Updated Project Name @@ -3639,8 +3639,8 @@ paths: - 1.0 - 2.0 verified: false - created_at: '2023-11-22T11:54:35.431Z' - updated_at: '2023-11-22T11:54:35.645Z' + created_at: '2023-11-22T14:59:30.549Z' + updated_at: '2023-11-22T14:59:30.724Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -3663,7 +3663,7 @@ paths: priority_landscape_total_impact: impact_calculated: false positive_financial_returns: Updated financial returns data - last_year_sales_revenue: Updated year sales revenues + last_year_sales_revenue: '20000.0' climate_change_risks_details: Updated climate risk details climate_change_risks_identified: true latitude: 2.0 @@ -3673,31 +3673,31 @@ paths: relationships: project_developer: data: - id: f5b34f11-a031-4b80-bc9c-70c638832c6a + id: 8c2d6004-eb0e-491d-bbd7-b3a9b0e5afe7 type: project_developer country: data: - id: f3aaa408-2a9c-4ed1-bd32-406e15f2e4bb + id: 940c84f8-6c18-468a-9c7c-c8c8aeb6ae1f type: location municipality: data: - id: 426f222b-30c1-4d5b-8fe3-a0d46e86c7bf + id: 34333d31-a3d8-4d81-8a3d-fecf3b9c4411 type: location department: data: - id: da11dadb-604d-4d06-98fe-692fcb425ca8 + id: ab076b6e-4e57-42bb-bf1f-d2aa518a6f3d type: location priority_landscape: data: involved_project_developers: data: - - id: cb455a75-6d8a-4ee8-a594-1444ceecb490 + - id: d1846793-f3ef-48cc-9bb2-0650c91b9f3b type: project_developer - - id: 5ff3348e-c459-497a-a64e-8282529d1ba2 + - id: 07e5ff13-e4b1-47f9-95c1-260c232f2308 type: project_developer project_images: data: - - id: 5c5d0bd3-6fbf-4fde-95b1-99fa520544c5 + - id: 192d8a63-ef75-4f6f-8844-90a1684fe42c type: project_image schema: type: object @@ -3773,7 +3773,7 @@ paths: positive_financial_returns: type: string last_year_sales_revenue: - type: string + type: number climate_change_risks_details: type: string climate_change_risks_identified: @@ -4002,7 +4002,7 @@ paths: application/json: example: data: - - id: da442775-2b7c-46d4-a2c3-77505bbabd5f + - id: 14863da0-d1fd-4f02-964d-e11ca3e45dcd type: project attributes: name: Project 1 @@ -4067,8 +4067,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T11:54:43.352Z' - updated_at: '2023-11-22T11:54:43.352Z' + created_at: '2023-11-22T14:59:37.784Z' + updated_at: '2023-11-22T14:59:37.784Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -4092,7 +4092,7 @@ paths: impact_calculated: false positive_financial_returns: Enim repellat pariatur. Earum modi eos. - last_year_sales_revenue: Enim repellat pariatur. + last_year_sales_revenue: '10000.0' climate_change_risks_details: Enim repellat pariatur. Earum modi eos. climate_change_risks_identified: true @@ -4103,19 +4103,19 @@ paths: relationships: project_developer: data: - id: 5d4e39bf-1041-4745-ad32-05c08e16078b + id: 9e90413e-dcca-42d7-b6ce-a935c51b09a0 type: project_developer country: data: - id: f5ce0ff1-6259-4f01-8144-97daac10b8ea + id: d10cf6c8-d5d8-4405-b981-8b228b42b606 type: location municipality: data: - id: c6f04304-98b0-4259-8fd2-06282a8a5dda + id: 7ed48e5c-31cf-47c6-9ab3-3e9bdb717bcb type: location department: data: - id: 9321723d-75cc-4f1b-b6e0-1077da9e6072 + id: 1150d3cb-20f1-4da1-802f-c0d17ac0483e type: location priority_landscape: data: @@ -4273,14 +4273,14 @@ paths: application/json: example: data: - - id: 92ec5161-3829-497a-aa9c-b6d8f4483c89 + - id: c83dd367-04b9-4f5a-9f63-47b0b05aebc9 type: user attributes: first_name: Dawna last_name: Block email: dawna.block@example.org role: light - created_at: '2023-11-22T11:54:45.966Z' + created_at: '2023-11-22T14:59:40.258Z' ui_language: en account_language: en otp_required_for_login: false @@ -4293,14 +4293,14 @@ paths: small: medium: original: - - id: bb5b16c3-97cf-4f67-b361-f25e21dae93a + - id: 0514de69-e95f-46b8-a2fc-1c88b5c889a7 type: user attributes: first_name: Desmond last_name: Herzog email: desmond_herzog@example.org role: light - created_at: '2023-11-22T11:54:45.984Z' + created_at: '2023-11-22T14:59:40.278Z' ui_language: en account_language: en otp_required_for_login: false @@ -4313,14 +4313,14 @@ paths: small: medium: original: - - id: 554d46d3-c1d4-4628-91ea-cae77d8b4a55 + - id: 026d99f3-389e-42e2-96e2-28f8b3a90eda type: user attributes: first_name: Raymon last_name: Runte email: runte_raymon@example.org role: light - created_at: '2023-11-22T11:54:45.989Z' + created_at: '2023-11-22T14:59:40.283Z' ui_language: en account_language: otp_required_for_login: false @@ -4415,14 +4415,14 @@ paths: application/json: example: data: - id: b02336e8-19d5-4ae5-a342-70ebafba48ed + id: 4a57222c-8499-4c11-9ac5-47c3e87f8e32 type: user attributes: first_name: Desmond last_name: Herzog email: desmond_herzog@example.org role: light - created_at: '2023-11-22T11:54:47.086Z' + created_at: '2023-11-22T14:59:41.521Z' 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'=ea94cbe2-d8a8-4a49-8ccd-c32baf23571c + - title: Couldn't find User with 'id'=1464067a-7107-4f5d-b2dd-8a9de1f45f98 [WHERE "users"."account_id" = $1] schema: "$ref": "#/components/schemas/errors" @@ -4572,7 +4572,7 @@ paths: application/json: example: data: - - id: 92e3a201-5859-4796-a940-9eb68ae1daec + - id: 4b407a3c-47cf-409a-bfdd-abd25f0e929c type: background_job_event attributes: status: enqueued @@ -4582,9 +4582,9 @@ paths: priority: executions: 1 message: - created_at: '2023-11-12T11:54:49.349Z' - updated_at: '2023-11-22T11:54:49.349Z' - - id: 9fc0e9d8-251b-4a1b-ab19-29c5e8ec4726 + created_at: '2023-11-12T14:59:43.525Z' + updated_at: '2023-11-22T14:59:43.525Z' + - id: 594c94c3-025f-4a30-a9a1-c1b36e1388eb type: background_job_event attributes: status: crashed @@ -4594,8 +4594,8 @@ paths: priority: executions: 1 message: - created_at: '2023-11-22T11:54:49.348Z' - updated_at: '2023-11-22T11:54:49.348Z' + created_at: '2023-11-22T14:59:43.524Z' + updated_at: '2023-11-22T14:59:43.524Z' meta: page: 1 per_page: 10 @@ -4656,14 +4656,14 @@ paths: application/json: example: data: - id: a89ac9a4-e1f4-4984-a03f-0660fb02957d + id: 74559c82-33e9-4849-8c3a-5d0138e3491f type: user attributes: first_name: Dawna last_name: Block email: user@example.com role: light - created_at: '2023-11-22T11:54:49.549Z' + created_at: '2023-11-22T14:59:43.707Z' ui_language: en account_language: otp_required_for_login: false @@ -5598,7 +5598,7 @@ paths: application/json: example: data: - - id: 590cfc68-c182-43ce-a91c-149ffcede7ac + - id: ad3c2c03-1d68-4737-ab47-d07415f14f86 type: investor attributes: name: Bartoletti and Sons @@ -5636,7 +5636,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T11:54:53.327Z' + created_at: '2023-11-22T14:59:47.530Z' contact_email: contact_phone: picture: @@ -5648,11 +5648,11 @@ paths: relationships: owner: data: - id: 304ac8e9-ec1b-47a4-96c2-b7305c52de01 + id: 5e423dc3-5983-47dc-93c0-fbc1d28e2dcc type: user open_calls: data: [] - - id: 53425fb5-e42c-4bb5-b37e-890aebaab0f1 + - id: b1ee4e56-d78a-48ea-8e46-d298c77609e7 type: investor attributes: name: Becker LLC @@ -5690,7 +5690,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T11:54:53.453Z' + created_at: '2023-11-22T14:59:47.643Z' contact_email: contact_phone: picture: @@ -5702,11 +5702,11 @@ paths: relationships: owner: data: - id: b1c001ac-609b-44ac-909e-2c1e74f64a64 + id: 6d4f8443-26ed-4bd6-b60e-37ded10eb20a type: user open_calls: data: [] - - id: 560718f2-ee3c-4088-8fc4-a62f5e2e11c4 + - id: 04b65dc1-0e81-46d4-9604-19a34ef45b5b type: investor attributes: name: Gleichner-Bartoletti @@ -5743,7 +5743,7 @@ paths: language: pt account_language: pt review_status: approved - created_at: '2023-11-22T11:54:53.536Z' + created_at: '2023-11-22T14:59:47.719Z' contact_email: contact_phone: picture: @@ -5755,11 +5755,11 @@ paths: relationships: owner: data: - id: 6d51f43d-008c-4af2-8622-225f207e7dc7 + id: 32ebf6f5-5e73-4d45-8c04-61d050b03718 type: user open_calls: data: [] - - id: 4b9b18d4-a6f5-4be8-96b5-493503d43f99 + - id: e5bc978a-27ce-4f9b-b278-3e0b64cc8be5 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-22T11:54:53.352Z' + created_at: '2023-11-22T14:59:47.551Z' contact_email: contact_phone: picture: @@ -5809,11 +5809,11 @@ paths: relationships: owner: data: - id: 3bc48488-f5e0-4241-a785-1bcf6c220e09 + id: d38d368d-0912-460f-8fdf-71ef4059533c type: user open_calls: data: [] - - id: 458b95a1-358a-4b21-ad6e-c834a4f824fd + - id: 23b090c8-2732-4e88-bbcf-2b9b77373a1f 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-22T11:54:53.378Z' + created_at: '2023-11-22T14:59:47.574Z' contact_email: contact_phone: picture: @@ -5863,11 +5863,11 @@ paths: relationships: owner: data: - id: 8c49971f-9d82-41d0-9e8c-4f47417f332e + id: b52450ed-bf4a-4634-ab4b-64e9fa66ecf2 type: user open_calls: data: [] - - id: 7422a9ed-7883-4880-865b-ce3b07d407b8 + - id: 392f4bb1-5512-4c0b-9419-cd2b0343a2bd 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-22T11:54:53.403Z' + created_at: '2023-11-22T14:59:47.597Z' contact_email: contact_phone: picture: @@ -5917,11 +5917,11 @@ paths: relationships: owner: data: - id: a93ac9d9-91e2-4f97-96c4-c5e4f199a3cc + id: 9e26a927-f0ff-4e91-8d3b-c32c35d0cb40 type: user open_calls: data: [] - - id: 9e35d2c9-6b9f-4885-9ec0-8705e4f49852 + - id: f8202b2b-9498-4a75-ad4e-be281f2b6c70 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-22T11:54:53.428Z' + created_at: '2023-11-22T14:59:47.620Z' contact_email: contact_phone: picture: @@ -5971,11 +5971,11 @@ paths: relationships: owner: data: - id: b90e6756-0c18-4fc9-af58-cb9ab5bb86a3 + id: 42f11d19-d762-4c88-9ed9-8eba180b2774 type: user open_calls: data: [] - - id: 7db62576-c598-4c27-b437-1734d8485c56 + - id: 12e216b0-9412-4c9f-9307-0e4f0d245a79 type: investor attributes: name: Kutch-Spencer @@ -6012,7 +6012,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T11:54:53.275Z' + created_at: '2023-11-22T14:59:47.486Z' contact_email: contact_phone: picture: @@ -6024,7 +6024,7 @@ paths: relationships: owner: data: - id: '00428939-e93e-4867-acc7-3bd518a8589c' + id: d7cee6c2-759d-4210-97ab-c5512898cc5f type: user open_calls: data: [] @@ -6090,7 +6090,7 @@ paths: application/json: example: data: - id: 7db62576-c598-4c27-b437-1734d8485c56 + id: 12e216b0-9412-4c9f-9307-0e4f0d245a79 type: investor attributes: name: Kutch-Spencer @@ -6127,7 +6127,7 @@ paths: language: en account_language: en review_status: approved - created_at: '2023-11-22T11:54:53.275Z' + created_at: '2023-11-22T14:59:47.486Z' contact_email: contact_phone: picture: @@ -6139,7 +6139,7 @@ paths: relationships: owner: data: - id: '00428939-e93e-4867-acc7-3bd518a8589c' + id: d7cee6c2-759d-4210-97ab-c5512898cc5f type: user open_calls: data: [] @@ -6273,14 +6273,14 @@ paths: application/json: example: data: - id: ee4bad2b-7c06-4773-b266-f52a8e62bf32 + id: 1854fab5-ce26-4ccd-abe1-37dd609fbe8d type: user attributes: first_name: Dawna last_name: Block email: dawna.block@example.org role: light - created_at: '2023-11-22T11:54:54.760Z' + created_at: '2023-11-22T14:59:48.744Z' ui_language: es account_language: pt otp_required_for_login: false @@ -6366,63 +6366,63 @@ paths: application/json: example: data: - - id: 5bc831c1-e7cc-49cc-9995-def5eb8a25d0 + - id: bac22521-1cc2-4217-b038-f0ae6633dd5d type: location attributes: name: Canada location_type: country code: - created_at: '2023-11-22T11:54:54.977Z' + created_at: '2023-11-22T14:59:48.967Z' relationships: parent: data: - - id: f916ecf7-648b-45f3-8258-10fc175a83bb + - id: a4950ce7-5543-4a51-87d4-fa031be1dbce type: location attributes: name: Papua New Guinea location_type: department code: - created_at: '2023-11-22T11:54:54.980Z' + created_at: '2023-11-22T14:59:48.969Z' relationships: parent: data: - id: 5bc831c1-e7cc-49cc-9995-def5eb8a25d0 + id: bac22521-1cc2-4217-b038-f0ae6633dd5d type: location - - id: 6d1fa0ac-a114-467b-a361-4f0e5e72fe09 + - id: 5594f5c9-1b78-435d-af81-e4cac35e494a type: location attributes: name: Jamaica location_type: municipality code: - created_at: '2023-11-22T11:54:54.983Z' + created_at: '2023-11-22T14:59:48.972Z' relationships: parent: data: - id: f916ecf7-648b-45f3-8258-10fc175a83bb + id: a4950ce7-5543-4a51-87d4-fa031be1dbce type: location - - id: 63d04e42-0f4e-4cc0-9878-841dc7409114 + - id: ecd9d5c2-3693-444f-83cf-f99cb2b49fff type: location attributes: name: Libyan Arab Jamahiriya location_type: municipality code: - created_at: '2023-11-22T11:54:54.985Z' + created_at: '2023-11-22T14:59:48.974Z' relationships: parent: data: - id: f916ecf7-648b-45f3-8258-10fc175a83bb + id: a4950ce7-5543-4a51-87d4-fa031be1dbce type: location - - id: 5620ebff-ad0e-4edf-a8dc-99947595b787 + - id: a07a358e-4947-4a03-8517-167bd5cda864 type: location attributes: name: India location_type: municipality code: - created_at: '2023-11-22T11:54:54.987Z' + created_at: '2023-11-22T14:59:48.976Z' relationships: parent: data: - id: f916ecf7-648b-45f3-8258-10fc175a83bb + id: a4950ce7-5543-4a51-87d4-fa031be1dbce type: location schema: type: object @@ -6471,17 +6471,17 @@ paths: application/json: example: data: - id: 6d1fa0ac-a114-467b-a361-4f0e5e72fe09 + id: 5594f5c9-1b78-435d-af81-e4cac35e494a type: location attributes: name: Jamaica location_type: municipality code: - created_at: '2023-11-22T11:54:54.983Z' + created_at: '2023-11-22T14:59:48.972Z' relationships: parent: data: - id: f916ecf7-648b-45f3-8258-10fc175a83bb + id: a4950ce7-5543-4a51-87d4-fa031be1dbce type: location schema: type: object @@ -6566,7 +6566,7 @@ paths: application/json: example: data: - - id: 8cec6482-70c2-442d-a406-91d5c9af22f4 + - id: 85214504-46f8-4242-964f-e2e56dce4274 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-22T11:54:55.174Z' + closing_at: '2024-09-22T14:59:49.184Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T11:54:55.177Z' - updated_at: '2023-11-22T11:54:55.186Z' + created_at: '2023-11-22T14:59:49.187Z' + updated_at: '2023-11-22T14:59:49.194Z' open_call_applications_count: 0 picture: analyzed: false @@ -6603,21 +6603,21 @@ paths: relationships: investor: data: - id: 1e7ad8c7-d2d8-4c06-b032-bbf8cf118682 + id: 0e4b5e4a-4356-438e-bc32-bc8dca641785 type: investor country: data: - id: d5184684-dcce-4892-ab67-250dc2e3cd57 + id: c59533c3-f023-4dbf-ae0a-42704f5d3efa type: location municipality: data: - id: 44d6ae09-b162-4d3b-83eb-e9197d32f2fb + id: 9a83e750-87f2-425d-b6f0-ee8d828cec71 type: location department: data: - id: eab71d32-123d-4179-b7d8-b882e2c7bd3c + id: 81220499-5d2b-4222-a310-98624a928245 type: location - - id: 88b756f3-8d2a-49e8-ae2a-3c515a1c19cd + - id: 027e5f30-a014-416b-9e56-5c1eb039b02f 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-22T11:54:55.226Z' + closing_at: '2024-09-22T14:59:49.237Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T11:54:55.228Z' - updated_at: '2023-11-22T11:54:55.235Z' + created_at: '2023-11-22T14:59:49.239Z' + updated_at: '2023-11-22T14:59:49.246Z' open_call_applications_count: 0 picture: analyzed: false @@ -6654,21 +6654,21 @@ paths: relationships: investor: data: - id: 640d657e-17be-4aaa-b7ef-4007dcb9d383 + id: 80b36223-e8b2-46f3-90a9-10924978b2b4 type: investor country: data: - id: c0e795fa-7596-44d4-b770-d108a3c1d613 + id: 8826b490-0756-47a3-b4b5-d5a43feefb79 type: location municipality: data: - id: 9f0e1b4e-580a-4927-9821-e70c6cbd1dfd + id: aa5bfd36-9320-45e0-8f00-955c5610d9c5 type: location department: data: - id: ec2a9cfc-ae08-4b97-a155-33dd0ea0c7f3 + id: 65c24094-e089-4137-8ace-96245104fac3 type: location - - id: d1a0436a-0314-4337-b528-ee722b60c82a + - id: abeee9d5-891d-4f09-9ff7-aaff06b072e3 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-22T11:54:55.274Z' + closing_at: '2024-09-22T14:59:49.280Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T11:54:55.276Z' - updated_at: '2023-11-22T11:54:55.283Z' + created_at: '2023-11-22T14:59:49.282Z' + updated_at: '2023-11-22T14:59:49.289Z' open_call_applications_count: 0 picture: analyzed: false @@ -6705,21 +6705,21 @@ paths: relationships: investor: data: - id: c70ac54c-0dd9-42a9-aa8d-9f4325fade41 + id: 1e506e70-4ac1-4b5f-8eae-c1065be58285 type: investor country: data: - id: df078013-2c32-4634-bfae-a5ff8c96595f + id: fc8b7285-bebe-4a84-b49c-e0a4f312971e type: location municipality: data: - id: 3e3db004-6de2-46a5-8dfb-ab68cd0f4afb + id: 1edc54ac-5b79-40f9-b1c7-c554819adcaf type: location department: data: - id: aee57185-e1c9-4aee-b420-3183383788bb + id: 7da3f6cb-e203-41dd-9e7d-6e8519d5dff2 type: location - - id: 30bd04f3-a5fc-442c-b73d-c8367532b4e9 + - id: 7763ad13-be3e-4f82-995d-a14fcaab688e 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-22T11:54:55.321Z' + closing_at: '2024-09-22T14:59:49.324Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T11:54:55.323Z' - updated_at: '2023-11-22T11:54:55.331Z' + created_at: '2023-11-22T14:59:49.326Z' + updated_at: '2023-11-22T14:59:49.333Z' open_call_applications_count: 0 picture: analyzed: false @@ -6756,21 +6756,21 @@ paths: relationships: investor: data: - id: da71649c-3245-486d-a55d-d1ad547f218b + id: 438e38e9-836c-41c7-ab8c-9dca85a89cd0 type: investor country: data: - id: 4cdba9fa-20db-4acc-9be9-0fa054115c65 + id: 27abf8fb-8351-49ae-a5b4-b79d216c1e2b type: location municipality: data: - id: '0279934f-acd1-44cc-84d9-93c819b6ca04' + id: 8945fd24-5a67-46ae-b02d-b3186c70aab2 type: location department: data: - id: 2dd46c57-6158-4306-ae5a-538ce1315a16 + id: 208fb42e-4896-4d81-a8b3-7ef60e949e29 type: location - - id: 5e2f7d09-c7cf-4ce4-ba7a-37e8fde7ebf7 + - id: d6618ee8-46da-4f2e-a143-0a2b7489778e 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-22T11:54:55.369Z' + closing_at: '2024-09-22T14:59:49.367Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T11:54:55.372Z' - updated_at: '2023-11-22T11:54:55.379Z' + created_at: '2023-11-22T14:59:49.370Z' + updated_at: '2023-11-22T14:59:49.376Z' open_call_applications_count: 0 picture: analyzed: false @@ -6807,21 +6807,21 @@ paths: relationships: investor: data: - id: ef60039f-03bc-4a18-b974-b1251f5b10fa + id: 85423b04-2962-4432-b2f2-af2dea13a42c type: investor country: data: - id: 8689ba8d-517a-4af2-a351-3b071af0896c + id: 40869b4a-48d1-40f3-8f01-33e5dcdbe7cb type: location municipality: data: - id: 1e93b490-27a6-4777-ba22-e27bf6afaaad + id: 55d0b1ea-1da5-4eb4-a407-7a14f2e81ad6 type: location department: data: - id: 7a46f266-d4b9-4e2f-9f6d-65918343deae + id: d0f0f769-db39-4b59-9a3b-169cf9344b73 type: location - - id: 02c910e1-f1c4-4d6f-88b3-073f736b1bfe + - id: f568c98c-a84b-477b-9cfd-2fd8dc4f4e61 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-22T11:54:55.418Z' + closing_at: '2024-09-22T14:59:49.412Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T11:54:55.420Z' - updated_at: '2023-11-22T11:54:55.427Z' + created_at: '2023-11-22T14:59:49.414Z' + updated_at: '2023-11-22T14:59:49.421Z' open_call_applications_count: 0 picture: analyzed: false @@ -6858,21 +6858,21 @@ paths: relationships: investor: data: - id: 3c6d50d2-acdb-427b-8831-afaab6e805e9 + id: ee2a72b4-fb84-4e6a-aa8a-c1da45d5ba76 type: investor country: data: - id: 55f167ad-34c8-439b-a3c7-a0821dda924a + id: 133d36c4-688a-4fa1-9e6e-cfb8390bbeab type: location municipality: data: - id: 73af4e44-714f-48a9-9fbe-3072008b11b4 + id: e60ebefa-c81d-4bde-8d97-3cc8586927fa type: location department: data: - id: e7556662-6c0e-4850-ae7a-edf19eda568e + id: 50e100eb-fd00-4294-94c6-3da48f370a40 type: location - - id: 9c444398-1513-44a5-9b64-fe65f3c6517b + - id: 8926946e-ea82-4a9d-83dd-0a522d085536 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-22T11:54:55.543Z' + closing_at: '2024-09-22T14:59:49.521Z' status: launched language: en account_language: pt verified: false - created_at: '2023-11-22T11:54:55.546Z' - updated_at: '2023-11-22T11:54:55.553Z' + created_at: '2023-11-22T14:59:49.523Z' + updated_at: '2023-11-22T14:59:49.529Z' open_call_applications_count: 0 picture: analyzed: false @@ -6908,21 +6908,21 @@ paths: relationships: investor: data: - id: 169c6c0c-0dfa-434a-843d-8fb4cc21f1f0 + id: 6328db76-4ac1-4ffb-ab17-801c6f80ad59 type: investor country: data: - id: c439cdcf-c9b8-4fe5-829c-67a18d4db662 + id: da94252d-5ab5-4fe6-972a-2760f7b86900 type: location municipality: data: - id: 3373b49a-4f7f-4ace-a25e-329b8467c470 + id: ff00c0c8-7100-4cf2-a147-55e2c0a0a59f type: location department: data: - id: fa8d3a03-bfdb-45c8-b525-230abccd8445 + id: effd0580-b45b-4167-9091-ae8916382c19 type: location - - id: 58608f24-89b7-47a5-8ed8-9862c335bb5c + - id: fbd61ac2-2e24-46a4-9d92-82b52a6f34bd 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-22T11:54:55.125Z' + closing_at: '2024-09-22T14:59:49.125Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T11:54:55.128Z' - updated_at: '2023-11-22T11:54:55.135Z' + created_at: '2023-11-22T14:59:49.129Z' + updated_at: '2023-11-22T14:59:49.138Z' open_call_applications_count: 0 picture: analyzed: false @@ -6959,19 +6959,19 @@ paths: relationships: investor: data: - id: c218489c-126f-4904-bad0-484b692a6a9c + id: 793d2ec9-7d24-4cce-a417-701e14f6f774 type: investor country: data: - id: a1691b92-feb4-4388-ba99-d9e0b2881754 + id: 7887cc2a-f714-4849-bbdd-f5e7f9cdddf3 type: location municipality: data: - id: d83e6db6-f297-48de-a3e0-61b05e2c762f + id: 0ac5d4a7-6d84-4450-8c77-1c73c4d5bdb2 type: location department: data: - id: 1c53ffa2-8e9b-466b-aaae-ff26ea2dbc86 + id: 129527f2-7fbf-460e-8f55-ace0ce87ae4a type: location meta: page: 1 @@ -7041,7 +7041,7 @@ paths: application/json: example: data: - id: 58608f24-89b7-47a5-8ed8-9862c335bb5c + id: fbd61ac2-2e24-46a4-9d92-82b52a6f34bd 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-22T11:54:55.125Z' + closing_at: '2024-09-22T14:59:49.125Z' status: launched language: en account_language: en verified: false - created_at: '2023-11-22T11:54:55.128Z' - updated_at: '2023-11-22T11:54:55.135Z' + created_at: '2023-11-22T14:59:49.129Z' + updated_at: '2023-11-22T14:59:49.138Z' open_call_applications_count: 0 picture: analyzed: false @@ -7078,19 +7078,19 @@ paths: relationships: investor: data: - id: c218489c-126f-4904-bad0-484b692a6a9c + id: 793d2ec9-7d24-4cce-a417-701e14f6f774 type: investor country: data: - id: a1691b92-feb4-4388-ba99-d9e0b2881754 + id: 7887cc2a-f714-4849-bbdd-f5e7f9cdddf3 type: location municipality: data: - id: d83e6db6-f297-48de-a3e0-61b05e2c762f + id: 0ac5d4a7-6d84-4450-8c77-1c73c4d5bdb2 type: location department: data: - id: 1c53ffa2-8e9b-466b-aaae-ff26ea2dbc86 + id: 129527f2-7fbf-460e-8f55-ace0ce87ae4a type: location schema: type: object @@ -7181,7 +7181,7 @@ paths: application/json: example: data: - - id: b098c6e7-8ed6-421e-900f-3a176d8e683e + - id: 7e3612b4-60dd-49cc-bd99-828a1521d254 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-22T11:54:56.052Z' + created_at: '2023-11-22T14:59:50.063Z' contact_email: contact_phone: picture: @@ -7218,21 +7218,21 @@ paths: relationships: owner: data: - id: aee2133d-41ce-4b74-8af5-c2b5a8799de8 + id: 37167c97-06f2-4fbb-8962-9a9005dbf42c type: user projects: data: - - id: c05e0871-cb1f-45e0-bbc2-30b069a5e3e0 + - id: 4289a7f7-537e-4754-8827-1e15da45d95f type: project involved_projects: data: [] priority_landscapes: data: - - id: 37029d56-d833-4297-a239-f380f59533e1 + - id: 0610bfe5-16a4-47e4-9e51-580faf5ab98b type: location - - id: e2d960df-4595-4c9d-95bd-c7513e9bc11e + - id: 8f5734c4-4694-4f03-8772-2daf1d6374b5 type: location - - id: c9b689cc-a5c3-4e43-a1da-9766bf00ffea + - id: e112e044-d083-4e43-bc85-6df9d267cb7c 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-22T11:54:56.325Z' + created_at: '2023-11-22T14:59:50.464Z' contact_email: contact_phone: picture: @@ -7269,7 +7269,7 @@ paths: relationships: owner: data: - id: 89705806-c4fc-4d7a-9321-58c3918a9642 + id: 1158e919-a143-44c6-986a-8624a1641e56 type: user projects: data: [] @@ -7277,11 +7277,11 @@ paths: data: [] priority_landscapes: data: - - id: 5d7c9f09-f3e7-4283-81cc-0277865c4de1 + - id: 183db547-faf2-4ff4-bbc2-2be640da600d type: location - - id: '05673190-fb6a-48d1-91de-a43059b49698' + - id: 654f2049-5f63-4bb3-b794-e41725f9a4e1 type: location - - id: 1c03b08d-f080-46bb-83d7-8efc2a6661b3 + - id: cad4b944-03d5-45bd-839f-4a6d0b120a3f 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-22T11:54:56.110Z' + created_at: '2023-11-22T14:59:50.180Z' contact_email: contact_phone: picture: @@ -7318,21 +7318,21 @@ paths: relationships: owner: data: - id: e5a8c49d-f844-4014-93c7-292ddc42df5b + id: 21ebd36a-9c88-4fb4-8c50-06df811e4176 type: user projects: data: - - id: aa1cfc32-b173-4452-9ea4-29067d4ced4c + - id: 8069880a-6e52-40f8-a0f8-e96f85c680d7 type: project involved_projects: data: [] priority_landscapes: data: - - id: 06dd351e-6bae-4503-b57f-aef0063ccac5 + - id: a8fa5c83-fd62-411c-8581-30e2307d0fb5 type: location - - id: d8759d70-7863-49d6-80f6-7ac4766e796d + - id: dc1fed59-f56e-440e-9bc6-d78962a37f35 type: location - - id: 305ab44a-d91b-479d-9886-1da18e29f7f4 + - id: bdd2b18a-5687-444e-b5d0-f6477106cab3 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-22T11:54:56.227Z' + created_at: '2023-11-22T14:59:50.375Z' contact_email: contact_phone: picture: @@ -7369,7 +7369,7 @@ paths: relationships: owner: data: - id: 0a4070b5-6da5-40bb-b18d-98fd8f47d05a + id: eb14582c-7cfd-4616-a6a1-3c0eac858872 type: user projects: data: [] @@ -7377,11 +7377,11 @@ paths: data: [] priority_landscapes: data: - - id: edae1dc2-af66-4ee6-9d5d-8f73e6170a17 + - id: b4354ffc-2d4e-4619-a627-ff365ab8c663 type: location - - id: d5a7e733-1517-436a-9ddb-ba8db782f68c + - id: f51bbce6-15b0-4538-a087-bd844f48efbd type: location - - id: bc08a8a5-3471-4df0-8595-5eb94ecdf904 + - id: 93f7eaa6-2b72-470f-b593-719f63cbb413 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-22T11:54:56.259Z' + created_at: '2023-11-22T14:59:50.405Z' contact_email: contact_phone: picture: @@ -7418,7 +7418,7 @@ paths: relationships: owner: data: - id: 57bffc89-9707-4ce8-9727-99e8853b3173 + id: 50ea26aa-ca22-4382-832a-243336c5b1b2 type: user projects: data: [] @@ -7426,11 +7426,11 @@ paths: data: [] priority_landscapes: data: - - id: fb3f951b-d184-4e63-a6b3-d37bc1b2e2a4 + - id: b7652a5c-f77e-4eed-8361-66aaae1d4933 type: location - - id: c2a56254-b32a-41fe-a7c3-b3c00c8100d3 + - id: d811ecf6-6714-447d-a846-d642d34b61b2 type: location - - id: e2cf1457-2920-475c-ac89-09aa7f53915a + - id: f6a11453-8ffa-4f3a-b750-8ab0f00d21c1 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-22T11:54:56.292Z' + created_at: '2023-11-22T14:59:50.435Z' contact_email: contact_phone: picture: @@ -7467,7 +7467,7 @@ paths: relationships: owner: data: - id: 9c4b0ac0-1f7b-44c4-adf1-afb51070ae00 + id: a22075f8-ab68-41d4-abdb-8a6e0c30c726 type: user projects: data: [] @@ -7475,11 +7475,11 @@ paths: data: [] priority_landscapes: data: - - id: 4883d4c7-7a35-43d3-b4f3-c691f5754229 + - id: '08fc8ffc-8b04-4855-82e4-f2a253b745b3' type: location - - id: 9b506c85-5d99-4e62-93e6-ec0161736c4a + - id: a2cc0321-82fc-4cae-9e72-284f4ebf62f3 type: location - - id: b188cc57-b310-4393-9fce-d57520bab811 + - id: 6753505a-7945-4b03-8f15-9e6dc4a06542 type: project_developer attributes: name: Kutch-Spencer @@ -7502,7 +7502,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T11:54:56.152Z' + created_at: '2023-11-22T14:59:50.313Z' contact_email: contact_phone: picture: @@ -7514,23 +7514,23 @@ paths: relationships: owner: data: - id: 145b190e-6bf3-414e-b1f5-2525f70fe583 + id: 0a2cde84-3160-4c7d-a4d2-d9c69fcae9d1 type: user projects: data: [] involved_projects: data: - - id: c05e0871-cb1f-45e0-bbc2-30b069a5e3e0 + - id: 4289a7f7-537e-4754-8827-1e15da45d95f type: project - - id: aa1cfc32-b173-4452-9ea4-29067d4ced4c + - id: 8069880a-6e52-40f8-a0f8-e96f85c680d7 type: project priority_landscapes: data: - - id: 0edb7631-7cb2-4799-871a-33e86f290518 + - id: 2d978aca-ae18-43c7-9878-0563e131a3f3 type: location - - id: 6cc730c1-9a50-4b0a-87c2-f81087fbc74f + - id: d8cd5ddf-73cb-48e5-8272-4a361be3b1e2 type: location - - id: b355b127-2786-4689-8c28-1145ee204c05 + - id: 856a0893-b9fe-466b-b778-8b06442beaab 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-22T11:54:56.494Z' + created_at: '2023-11-22T14:59:50.617Z' contact_email: contact_phone: picture: @@ -7566,7 +7566,7 @@ paths: relationships: owner: data: - id: 73cd4551-2252-40e0-9100-94dd401b4bbe + id: 58546c09-c882-4f7a-8b88-17710b69a683 type: user projects: data: [] @@ -7574,11 +7574,11 @@ paths: data: [] priority_landscapes: data: - - id: e75003b5-8560-4fa3-82c7-148a713f8f6a + - id: 2b1178d8-80d0-4ca8-8cc1-dd5cfbd6bc01 type: location - - id: afeffb72-2007-4222-ad88-791e58de9a2d + - id: 6e99dfaf-1acb-496d-b425-380c6a7971b1 type: location - - id: 9c45d5af-a357-4866-9e00-28f0ff6fd825 + - id: c0059880-5cdb-4f21-b63b-b010ce00b4e3 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-22T11:54:56.393Z' + created_at: '2023-11-22T14:59:50.523Z' contact_email: contact_phone: picture: @@ -7615,7 +7615,7 @@ paths: relationships: owner: data: - id: 0da51a13-f15c-47dd-8a95-7496fece4a18 + id: bbffd147-d39f-4efc-a30c-cf1319fba34e type: user projects: data: [] @@ -7623,11 +7623,11 @@ paths: data: [] priority_landscapes: data: - - id: 1cbf7dea-4886-4cab-a4e1-c7ce99981fac + - id: 48777322-fead-42a4-ba84-38438cacc485 type: location - - id: 4910ffad-07bf-4490-a2fe-eebe3fdd3e85 + - id: 824eb774-26bd-4d62-8cc9-549e38060c5a type: location - - id: 906f8c46-1f53-48eb-b5a9-81442e042ec1 + - id: 0b24892c-8a02-463c-9db8-7eab6b2162e8 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-22T11:54:56.359Z' + created_at: '2023-11-22T14:59:50.493Z' contact_email: contact_phone: picture: @@ -7664,7 +7664,7 @@ paths: relationships: owner: data: - id: 2f703b29-66a8-440b-a197-d1841b170b82 + id: feae8408-1ba4-48c1-bafe-82cef83f658f type: user projects: data: [] @@ -7672,9 +7672,9 @@ paths: data: [] priority_landscapes: data: - - id: 935a5116-d9ed-4701-b1cf-d9f7f91b30a9 + - id: 42839dae-9651-432e-8a0f-fd8e9b1dbea5 type: location - - id: 1f12049a-61ff-4f8f-bc08-d5323264b877 + - id: f221751f-456c-481e-af4f-ffe8cd904f50 type: location meta: page: 1 @@ -7744,7 +7744,7 @@ paths: application/json: example: data: - id: b188cc57-b310-4393-9fce-d57520bab811 + id: 6753505a-7945-4b03-8f15-9e6dc4a06542 type: project_developer attributes: name: Kutch-Spencer @@ -7767,7 +7767,7 @@ paths: account_language: en entity_legal_registration_number: '564823570' review_status: approved - created_at: '2023-11-22T11:54:56.152Z' + created_at: '2023-11-22T14:59:50.313Z' contact_email: contact_phone: picture: @@ -7779,21 +7779,21 @@ paths: relationships: owner: data: - id: 145b190e-6bf3-414e-b1f5-2525f70fe583 + id: 0a2cde84-3160-4c7d-a4d2-d9c69fcae9d1 type: user projects: data: [] involved_projects: data: - - id: c05e0871-cb1f-45e0-bbc2-30b069a5e3e0 + - id: 4289a7f7-537e-4754-8827-1e15da45d95f type: project - - id: aa1cfc32-b173-4452-9ea4-29067d4ced4c + - id: 8069880a-6e52-40f8-a0f8-e96f85c680d7 type: project priority_landscapes: data: - - id: 0edb7631-7cb2-4799-871a-33e86f290518 + - id: 2d978aca-ae18-43c7-9878-0563e131a3f3 type: location - - id: 6cc730c1-9a50-4b0a-87c2-f81087fbc74f + - id: d8cd5ddf-73cb-48e5-8272-4a361be3b1e2 type: location schema: type: object @@ -7867,49 +7867,49 @@ paths: application/json: example: data: - - id: 32be97f6-8655-4505-9919-09f15d9ff9ba + - id: ed4477ec-c80c-421a-9928-4b323cd0bb5d type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: a3b3c4ad-7a7b-40c2-bb89-789e03bd90af + - id: 25c7ddc3-7a3d-46d8-bf49-3186e579c2d4 type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: 7ad39690-8c18-40d9-9419-530928b081ce + - id: a069c36d-21fc-47df-9488-dc1095c30842 type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: 0cdef676-f4d0-4519-9979-0b7bdad64f38 + - id: 285d83e5-6e61-499b-9daf-ccfd3321812b type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: a40326e9-3128-4067-96b7-f33d98daaa09 + - id: eaf84f1c-5476-4bd1-96cc-8c4284aa5395 type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: 13367eb1-d67f-4f27-a86b-e855e5acb31e + - id: 9dccace5-9060-429a-90ee-7b41edd80c1f type: project_map attributes: verified: false category: forestry-and-agroforestry latitude: 39.21309022641362 longitude: -5.87810037515931 - - id: 697d0451-350f-495a-9608-fb17c6f31cc4 + - id: ec403819-13fc-47df-84d9-1ded5c572c01 type: project_map attributes: verified: false @@ -8053,7 +8053,7 @@ paths: application/json: example: data: - - id: 87e1c076-a63b-4f04-9dec-3c13ef192086 + - id: ed74b926-3838-4849-80dd-4f046f9c7dd0 type: project attributes: name: Project 1 @@ -8118,8 +8118,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T11:54:58.171Z' - updated_at: '2023-11-22T11:54:58.171Z' + created_at: '2023-11-22T14:59:52.299Z' + updated_at: '2023-11-22T14:59:52.299Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -8143,7 +8143,7 @@ paths: impact_calculated: false positive_financial_returns: Placeat commodi libero. Quo recusandae repellat. - last_year_sales_revenue: Placeat commodi libero. + last_year_sales_revenue: '10000.0' climate_change_risks_details: Placeat commodi libero. Quo recusandae repellat. climate_change_risks_identified: true @@ -8154,19 +8154,19 @@ paths: relationships: project_developer: data: - id: 07202cd8-a9a1-41f7-b50f-19fc23a3e8c2 + id: fc77b553-12ca-4feb-ba7a-c4c82476da15 type: project_developer country: data: - id: 838bfc46-477b-44d7-9c31-09d0f86f02ad + id: 47003811-6d8e-4826-8194-a9dc36ccc93e type: location municipality: data: - id: f8949f82-f3fd-4488-abde-8f4a4071a31e + id: c8040c5a-f882-4f27-9c51-92b85c1428a1 type: location department: data: - id: bc8c93de-598b-4436-aaa2-64e2f06bdef5 + id: 3cb914e3-14eb-43ad-b183-ff3408d5a846 type: location priority_landscape: data: @@ -8174,7 +8174,7 @@ paths: data: [] project_images: data: [] - - id: e8ce82d9-9a3b-4c63-a299-336bc2fac621 + - id: 1961d939-a44b-42ce-bbf9-a8cbef25c8af type: project attributes: name: Project 2 @@ -8239,8 +8239,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T11:54:58.239Z' - updated_at: '2023-11-22T11:54:58.239Z' + created_at: '2023-11-22T14:59:52.363Z' + updated_at: '2023-11-22T14:59:52.363Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -8263,7 +8263,7 @@ paths: priority_landscape_total_impact: impact_calculated: false positive_financial_returns: Et quaerat omnis. Harum voluptas atque. - last_year_sales_revenue: Et quaerat omnis. + last_year_sales_revenue: '10000.0' climate_change_risks_details: Et quaerat omnis. Harum voluptas atque. climate_change_risks_identified: true @@ -8274,19 +8274,19 @@ paths: relationships: project_developer: data: - id: 885bce9a-e966-4ba3-b80a-c2c77623816b + id: 9bc1045a-1889-4dc3-8182-5e3d6ebaa964 type: project_developer country: data: - id: 030e9a00-e6aa-46fb-a125-8ae987a72777 + id: b03db00d-0159-44e1-a7d4-3a605c5dfa67 type: location municipality: data: - id: 0fba05f3-b2ab-4f86-80ec-00da3d14af3b + id: 4323fb99-4b69-4c4e-90f9-17a4a189b5ed type: location department: data: - id: ac7dfa01-45e6-4921-be7b-7915de090863 + id: b5fa04ea-3a57-43ba-861a-61af8abf80dd type: location priority_landscape: data: @@ -8294,7 +8294,7 @@ paths: data: [] project_images: data: [] - - id: db131ed4-ad8d-451d-b485-6ffc57636fc0 + - id: bbba9902-64ba-42b8-ae0d-b8c9df43b9ca type: project attributes: name: Project 3 @@ -8359,8 +8359,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T11:54:58.304Z' - updated_at: '2023-11-22T11:54:58.304Z' + created_at: '2023-11-22T14:59:52.432Z' + updated_at: '2023-11-22T14:59:52.432Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -8384,7 +8384,7 @@ paths: impact_calculated: false positive_financial_returns: Dolores fugiat nesciunt. Ut laborum dolores. - last_year_sales_revenue: Dolores fugiat nesciunt. + last_year_sales_revenue: '10000.0' climate_change_risks_details: Dolores fugiat nesciunt. Ut laborum dolores. climate_change_risks_identified: true @@ -8395,19 +8395,19 @@ paths: relationships: project_developer: data: - id: f49c269f-5625-4ee3-b73d-5d350fe689a3 + id: 659c906a-c8f4-436c-bf86-07f97ff5b549 type: project_developer country: data: - id: 930658c1-d80e-446e-b248-5b14ffb751c2 + id: baad41b7-1a5b-49bf-b504-c7175d5fff20 type: location municipality: data: - id: 2e65f42f-c80b-4ddc-bb1a-ceaa46e6a332 + id: c342b949-5230-4137-8acc-4db7e4668f2e type: location department: data: - id: 9122f9b7-6ee1-4569-98e5-33ca4808c648 + id: d8f632e1-7024-4833-8191-46873af0d52f type: location priority_landscape: data: @@ -8415,7 +8415,7 @@ paths: data: [] project_images: data: [] - - id: 343d2d42-3d3d-4505-a03c-3543f15fdf9d + - id: 30460601-9f5e-42ac-bc17-bf9315678f32 type: project attributes: name: Project 4 @@ -8480,8 +8480,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T11:54:58.372Z' - updated_at: '2023-11-22T11:54:58.372Z' + created_at: '2023-11-22T14:59:52.493Z' + updated_at: '2023-11-22T14:59:52.493Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -8504,7 +8504,7 @@ paths: priority_landscape_total_impact: impact_calculated: false positive_financial_returns: Autem et et. Voluptatem neque quibusdam. - last_year_sales_revenue: Autem et et. + last_year_sales_revenue: '10000.0' climate_change_risks_details: Autem et et. Voluptatem neque quibusdam. climate_change_risks_identified: true latitude: 39.21309022641362 @@ -8514,19 +8514,19 @@ paths: relationships: project_developer: data: - id: 10419c54-cbaf-4fed-989a-1580f5251b59 + id: d64ce40c-389a-43cf-87e2-2ea291f3f082 type: project_developer country: data: - id: da5efa8f-d303-4cf7-bc39-9b9f9f053337 + id: 956c5f16-3f92-4975-859e-ac70433e7c76 type: location municipality: data: - id: 277bc107-4276-4c94-9ac6-c956a8c6c42f + id: 9c87d266-870d-4682-8779-6ca1dab8ee7c type: location department: data: - id: 17fe660f-d276-48a4-bd68-730de39a04e2 + id: 221f11f8-106b-4b89-9acc-b29669543b36 type: location priority_landscape: data: @@ -8534,7 +8534,7 @@ paths: data: [] project_images: data: [] - - id: 7aa1a4aa-23fd-4855-b0d3-1c2eb6555a47 + - id: ccedbf81-4f1e-4175-8fa3-2fc82cbbd1e9 type: project attributes: name: Project 5 @@ -8599,8 +8599,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T11:54:58.438Z' - updated_at: '2023-11-22T11:54:58.438Z' + created_at: '2023-11-22T14:59:52.550Z' + updated_at: '2023-11-22T14:59:52.550Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -8624,7 +8624,7 @@ paths: impact_calculated: false positive_financial_returns: Porro soluta beatae. Quia ratione facilis. - last_year_sales_revenue: Porro soluta beatae. + last_year_sales_revenue: '10000.0' climate_change_risks_details: Porro soluta beatae. Quia ratione facilis. climate_change_risks_identified: true @@ -8635,19 +8635,19 @@ paths: relationships: project_developer: data: - id: 3dfd72d7-63fe-432f-a3f0-a52efea52964 + id: 73228673-d606-4dae-ac9f-3412dd63953a type: project_developer country: data: - id: 58f9d22d-b675-43a0-9cb1-0a14d9aec6e0 + id: 76195e04-11ce-4c6f-b8aa-13624d06e720 type: location municipality: data: - id: 3a0d20d6-ddb0-41b8-b7d9-c524a64d788a + id: d2e83b5f-059a-458b-91c7-3a0cf1c267f2 type: location department: data: - id: 405fa157-498b-44bf-9711-6cd67375bf75 + id: 02faedbb-607c-40f5-85fa-0b3315708314 type: location priority_landscape: data: @@ -8655,7 +8655,7 @@ paths: data: [] project_images: data: [] - - id: 756aca28-c38a-4861-bdef-55a692bb65cc + - id: 31d4fd28-a144-4a24-8366-96eb9e429ab6 type: project attributes: name: Project 6 @@ -8720,8 +8720,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T11:54:58.516Z' - updated_at: '2023-11-22T11:54:58.516Z' + created_at: '2023-11-22T14:59:52.611Z' + updated_at: '2023-11-22T14:59:52.611Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -8744,7 +8744,7 @@ paths: priority_landscape_total_impact: impact_calculated: false positive_financial_returns: Mollitia aut vel. Qui illum accusantium. - last_year_sales_revenue: Mollitia aut vel. + last_year_sales_revenue: '10000.0' climate_change_risks_details: Mollitia aut vel. Qui illum accusantium. climate_change_risks_identified: true latitude: 39.21309022641362 @@ -8754,19 +8754,19 @@ paths: relationships: project_developer: data: - id: 2002c471-10f8-4b1a-98a4-65cb9cd2a3f1 + id: c964890b-5dfd-4219-82b9-21a67e71549e type: project_developer country: data: - id: a4b504d0-647f-456c-9613-f86fedfc2b2e + id: fb4ab687-fa19-40c0-adc6-e625afb801f0 type: location municipality: data: - id: 20e1d410-189d-44d9-bbd3-464938f4a34e + id: d5112946-77f5-457a-ab96-6f5e79afeadb type: location department: data: - id: 215b01fb-9350-4492-a6e5-abccfb2ea999 + id: c25db65e-7115-47b8-871c-1b707131b18e type: location priority_landscape: data: @@ -8774,7 +8774,7 @@ paths: data: [] project_images: data: [] - - id: 523910ea-9eee-47c4-90ff-c0faea4eb0bd + - id: 637de82a-944b-4b1a-9a33-448448797b0c type: project attributes: name: Project 9 @@ -8838,8 +8838,8 @@ paths: - - -7.256596802202454 - 39.42149705239956 verified: false - created_at: '2023-11-22T11:54:58.755Z' - updated_at: '2023-11-22T11:54:58.755Z' + created_at: '2023-11-22T14:59:52.841Z' + updated_at: '2023-11-22T14:59:52.841Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -8862,7 +8862,7 @@ paths: priority_landscape_total_impact: impact_calculated: false positive_financial_returns: Tempora excepturi et. Et quia sit. - last_year_sales_revenue: Tempora excepturi et. + last_year_sales_revenue: '10000.0' climate_change_risks_details: Tempora excepturi et. Et quia sit. climate_change_risks_identified: true latitude: 39.21309022641362 @@ -8872,19 +8872,19 @@ paths: relationships: project_developer: data: - id: 72349428-fbd3-42ae-8f80-ca1b31ef60bb + id: dee5b715-661f-4ea6-a674-020d248a8375 type: project_developer country: data: - id: 9e820a85-a429-4259-9a93-8769844d949a + id: a56d25e8-3ce4-431a-9bda-aa7f7751896d type: location municipality: data: - id: '08b6b0d8-83f0-49ee-920f-49463ed92864' + id: 00fafa35-8eff-4065-b16b-26151bc42dc4 type: location department: data: - id: eaa33193-7d61-4e0b-aecc-16d324e296eb + id: 7b17411a-eb29-4854-842d-d16cf086089e type: location priority_landscape: data: @@ -8892,7 +8892,7 @@ paths: data: [] project_images: data: [] - - id: '0919b668-6672-47db-88ae-a9784e1b92d8' + - id: 3c122a73-104e-49a0-9472-549c48186ec9 type: project attributes: name: Yellow Banana @@ -8953,8 +8953,8 @@ paths: - - 0.0 - 0.0 verified: false - created_at: '2023-11-22T11:54:58.092Z' - updated_at: '2023-11-22T11:54:58.092Z' + created_at: '2023-11-22T14:59:52.222Z' + updated_at: '2023-11-22T14:59:52.222Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -8978,7 +8978,7 @@ paths: impact_calculated: false positive_financial_returns: Enim repellat pariatur. Earum modi eos. - last_year_sales_revenue: Enim repellat pariatur. + last_year_sales_revenue: '10000.0' climate_change_risks_details: Enim repellat pariatur. Earum modi eos. climate_change_risks_identified: true @@ -8989,35 +8989,35 @@ paths: relationships: project_developer: data: - id: 86dfb982-e9d3-4cd0-bd5b-1494a917a98b + id: cbd7141e-56f7-49c0-9401-5c0457dbed40 type: project_developer country: data: - id: fdc89463-fdfc-4b86-a56e-758543617991 + id: a9a4abe8-d98b-4a2b-b74f-f4b7a16800c7 type: location municipality: data: - id: 19b2407d-8da7-4a42-8b84-f13e23ffe876 + id: 3e84239c-42f3-40db-be8f-651cb02cdf8a type: location department: data: - id: 7ebeab12-33a4-4c01-8217-65ad17974691 + id: 97855a53-9afe-4e21-8ab0-ca7c54b30843 type: location priority_landscape: data: - id: ff83884c-f632-481a-b38c-9b163ae2daff + id: 3b230343-2e17-415b-8c17-c10727c91039 type: location involved_project_developers: data: - - id: 5aeda58d-594b-4fe0-9eec-2b69dd9f72cd + - id: 29350eff-23c1-4cf0-b96e-c9aa17a9661a type: project_developer - - id: 90233779-e157-49a1-a992-eb727cade719 + - id: 1dd30093-3236-4626-a040-7672ad575263 type: project_developer project_images: data: - - id: b45ff0ff-2e3c-4205-a48a-1c7fffa5f52d + - id: 7567388a-671a-4cbe-aa88-60c6eddaab0d type: project_image - - id: 53be483a-3c66-4b59-9799-fd3ad25f9639 + - id: 7239cbfc-a568-4134-9790-587220e14c8d type: project_image meta: page: 1 @@ -9087,7 +9087,7 @@ paths: application/json: example: data: - id: '0919b668-6672-47db-88ae-a9784e1b92d8' + id: 3c122a73-104e-49a0-9472-549c48186ec9 type: project attributes: name: Yellow Banana @@ -9148,8 +9148,8 @@ paths: - - 0.0 - 0.0 verified: false - created_at: '2023-11-22T11:54:58.092Z' - updated_at: '2023-11-22T11:54:58.092Z' + created_at: '2023-11-22T14:59:52.222Z' + updated_at: '2023-11-22T14:59:52.222Z' project_biodiversity_impact: project_climate_impact: project_water_impact: @@ -9173,7 +9173,7 @@ paths: impact_calculated: false positive_financial_returns: Enim repellat pariatur. Earum modi eos. - last_year_sales_revenue: Enim repellat pariatur. + last_year_sales_revenue: '10000.0' climate_change_risks_details: Enim repellat pariatur. Earum modi eos. climate_change_risks_identified: true @@ -9184,35 +9184,35 @@ paths: relationships: project_developer: data: - id: 86dfb982-e9d3-4cd0-bd5b-1494a917a98b + id: cbd7141e-56f7-49c0-9401-5c0457dbed40 type: project_developer country: data: - id: fdc89463-fdfc-4b86-a56e-758543617991 + id: a9a4abe8-d98b-4a2b-b74f-f4b7a16800c7 type: location municipality: data: - id: 19b2407d-8da7-4a42-8b84-f13e23ffe876 + id: 3e84239c-42f3-40db-be8f-651cb02cdf8a type: location department: data: - id: 7ebeab12-33a4-4c01-8217-65ad17974691 + id: 97855a53-9afe-4e21-8ab0-ca7c54b30843 type: location priority_landscape: data: - id: ff83884c-f632-481a-b38c-9b163ae2daff + id: 3b230343-2e17-415b-8c17-c10727c91039 type: location involved_project_developers: data: - - id: 5aeda58d-594b-4fe0-9eec-2b69dd9f72cd + - id: 29350eff-23c1-4cf0-b96e-c9aa17a9661a type: project_developer - - id: 90233779-e157-49a1-a992-eb727cade719 + - id: 1dd30093-3236-4626-a040-7672ad575263 type: project_developer project_images: data: - - id: b45ff0ff-2e3c-4205-a48a-1c7fffa5f52d + - id: 7567388a-671a-4cbe-aa88-60c6eddaab0d type: project_image - - id: 53be483a-3c66-4b59-9799-fd3ad25f9639 + - id: 7239cbfc-a568-4134-9790-587220e14c8d type: project_image schema: type: object @@ -9260,14 +9260,14 @@ paths: application/json: example: data: - id: e199c8ca-c79d-449a-a784-f12e103e5123 + id: b4afcf6c-9de2-4075-b7fe-cc6c8b74b37d type: user attributes: first_name: Dawna last_name: Block email: user@example.com role: light - created_at: '2023-11-22T11:54:59.613Z' + created_at: '2023-11-22T14:59:53.816Z' ui_language: en account_language: otp_required_for_login: false @@ -9323,14 +9323,14 @@ paths: application/json: example: data: - id: ded395a5-f4a7-40f8-8e92-e844274261ca + id: 2fd84849-d208-49bc-b94f-23cebc80a912 type: user attributes: first_name: Dawna last_name: Block email: user@example.com role: light - created_at: '2023-11-22T11:54:59.753Z' + created_at: '2023-11-22T14:59:53.944Z' ui_language: en account_language: otp_required_for_login: false @@ -9455,14 +9455,14 @@ paths: application/json: example: data: - id: b92d454b-df82-4be3-80ba-21d9695e2e7c + id: bb7b1603-f21c-4398-ba22-382168b03b23 type: user attributes: first_name: Jan last_name: Kowalski email: jankowalski@example.com role: light - created_at: '2023-11-22T11:55:00.216Z' + created_at: '2023-11-22T14:59:54.388Z' ui_language: en account_language: otp_required_for_login: false @@ -9551,14 +9551,14 @@ paths: application/json: example: data: - id: c4007b0e-fdf3-4a0a-9411-804f245d71c4 + id: 80dac956-e92a-4b7f-8757-8be3cb34f32b type: user attributes: first_name: New First Name last_name: New Last Name email: user@example.com role: light - created_at: '2023-11-22T11:55:00.136Z' + created_at: '2023-11-22T14:59:54.321Z' ui_language: en account_language: otp_required_for_login: true @@ -9621,14 +9621,14 @@ paths: application/json: example: data: - id: c4007b0e-fdf3-4a0a-9411-804f245d71c4 + id: 80dac956-e92a-4b7f-8757-8be3cb34f32b type: user attributes: first_name: Dawna last_name: Block email: user@example.com role: light - created_at: '2023-11-22T11:55:00.136Z' + created_at: '2023-11-22T14:59:54.321Z' ui_language: en account_language: otp_required_for_login: false @@ -9712,19 +9712,19 @@ paths: content: application/json: example: - id: f995a20f-db09-428b-b1a5-52041feb59a7 - key: 7kmg4tu082hroezdvi7x4eosla5r + id: eab14ded-3249-4955-978b-4329e333a596 + key: 8i4lyc6a5t2s5p1czi1cdd425wqa filename: test.jpg content_type: image/jpeg metadata: {} service_name: test byte_size: 32326 checksum: QYeLAwqIj9HrwITqtTYaEw== - created_at: '2023-11-22T11:55:01.159Z' - signed_id: eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaEpJaWxtT1RrMVlUSXdaaTFrWWpBNUxUUXlPR0l0WWpGaE5TMDFNakEwTVdabFlqVTVZVGNHT2daRlZBPT0iLCJleHAiOm51bGwsInB1ciI6ImJsb2JfaWQifX0=--11355062f57497523de12eac478503f6749e0198 - attachable_sgid: eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaEpJbFpuYVdRNkx5OWlZV05yWlc1a0wwRmpkR2wyWlZOMGIzSmhaMlU2T2tKc2IySXZaams1TldFeU1HWXRaR0l3T1MwME1qaGlMV0l4WVRVdE5USXdOREZtWldJMU9XRTNQMlY0Y0dseVpYTmZhVzRHT2daRlZBPT0iLCJleHAiOm51bGwsInB1ciI6ImF0dGFjaGFibGUifX0=--a0e3ebe523ba86ad40d69130e93b7fb4173b935b + created_at: '2023-11-22T14:59:55.454Z' + signed_id: eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaEpJaWxsWVdJeE5HUmxaQzB6TWpRNUxUUTVOVFV0T1RjNFlpMDBNekk1WlRNek0yRTFPVFlHT2daRlZBPT0iLCJleHAiOm51bGwsInB1ciI6ImJsb2JfaWQifX0=--ba3c75b1905117404e5b8de6dc0c4f0df02ccb79 + attachable_sgid: eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaEpJbFpuYVdRNkx5OWlZV05yWlc1a0wwRmpkR2wyWlZOMGIzSmhaMlU2T2tKc2IySXZaV0ZpTVRSa1pXUXRNekkwT1MwME9UVTFMVGszT0dJdE5ETXlPV1V6TXpOaE5UazJQMlY0Y0dseVpYTmZhVzRHT2daRlZBPT0iLCJleHAiOm51bGwsInB1ciI6ImF0dGFjaGFibGUifX0=--66476be61fd0cee2980f90505692f739dbbad8b7 direct_upload: - url: http://www.example.com/backend/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDam9JYTJWNVNTSWhOMnR0WnpSMGRUQTRNbWh5YjJWNlpIWnBOM2cwWlc5emJHRTFjZ1k2QmtWVU9oRmpiMjUwWlc1MFgzUjVjR1ZKSWc5cGJXRm5aUzlxY0dWbkJqc0dWRG9UWTI5dWRHVnVkRjlzWlc1bmRHaHBBa1orT2cxamFHVmphM04xYlVraUhWRlpaVXhCZDNGSmFqbEljbmRKVkhGMFZGbGhSWGM5UFFZN0JsUTZFWE5sY25acFkyVmZibUZ0WlRvSmRHVnpkQT09IiwiZXhwIjoiMjAyMy0xMS0yMlQxMjowMDowMS4xNjFaIiwicHVyIjoiYmxvYl90b2tlbiJ9fQ==--5c5edb12fd3f45928f288b5250fd3593b8d64bcf + url: http://www.example.com/backend/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDam9JYTJWNVNTSWhPR2swYkhsak5tRTFkREp6TlhBeFkzcHBNV05rWkRReU5YZHhZUVk2QmtWVU9oRmpiMjUwWlc1MFgzUjVjR1ZKSWc5cGJXRm5aUzlxY0dWbkJqc0dWRG9UWTI5dWRHVnVkRjlzWlc1bmRHaHBBa1orT2cxamFHVmphM04xYlVraUhWRlpaVXhCZDNGSmFqbEljbmRKVkhGMFZGbGhSWGM5UFFZN0JsUTZFWE5sY25acFkyVmZibUZ0WlRvSmRHVnpkQT09IiwiZXhwIjoiMjAyMy0xMS0yMlQxNTowNDo1NS40NTZaIiwicHVyIjoiYmxvYl90b2tlbiJ9fQ==--e38513f319525f8ad370c38f71ebbec965fd2d3b headers: Content-Type: image/jpeg schema: @@ -10513,6 +10513,7 @@ components: - errors servers: - url: "/" +- url: "/backend" - url: "{scheme}://{host}" variables: scheme: From b925fb3778f08eb093c3c1dc46c54664856454b6 Mon Sep 17 00:00:00 2001 From: yulia-bel Date: Wed, 22 Nov 2023 16:39:44 +0100 Subject: [PATCH 10/10] Fix format --- backend/spec/factories/project.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/spec/factories/project.rb b/backend/spec/factories/project.rb index 0bad9840f..d711f7cf1 100644 --- a/backend/spec/factories/project.rb +++ b/backend/spec/factories/project.rb @@ -54,8 +54,8 @@ Faker::Config.random = Random.new(n) Faker::Lorem.paragraph(sentence_count: 2) end - - last_year_sales_revenue { 10000} + + last_year_sales_revenue { 10000 } climate_change_risks_identified { true }