action greip_get_country { label: "get_Country" description: "Country endpoint: Returns the information of a specific country by passing the `countrCode`." provider: greip method: GET path: "/Country" encoding: json input: { type: "object" properties: { CountryCode: { type: "string" } format: { type: "string" } key: { type: "string" } lang: { type: "string" } params: { type: "string" } } required: ["CountryCode", "key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }