action greenpeace_get_events { label: "get_events" description: "Return the upcoming events (e.g. start date >= today). Gets an array of `Event` object. Mandatory query param of **domain** determines the site / country the event belongs to." provider: greenpeace method: GET path: "/events" encoding: json input: { type: "object" properties: { domain: { type: "string" } limit: { type: "string" } } required: ["domain"] additionalProperties: false } output: { type: "object" additionalProperties: true } }