action esgenterprise_get_search { label: "List all company ESG Ratings" provider: esgenterprise method: GET path: "/search" encoding: json input: { type: "object" properties: { q: { type: "string" } } required: ["q"] additionalProperties: false } output: { properties: { company_name: { type: "string" } environment_score: { type: "number" format: "double" } governance_score: { type: "number" format: "double" } last_processing_date: { type: "string" format: "date" } social_score: { type: "number" format: "double" } total: { type: "number" format: "double" } } } }