action appwrite_locale_get_countries_eu { label: "List EU Countries" description: "List of all countries that are currently members of the EU. You can use the locale header to get the data in a supported language." provider: appwrite method: GET path: "/locale/countries/eu" encoding: json output: { type: "object" description: "Countries List" required: ["countries", "sum"] properties: { countries: { type: "array" description: "List of countries." items: { type: "object" description: "Country" required: ["name", "code"] properties: { code: { type: "string" description: "Country two-character ISO 3166-1 alpha code." } name: { type: "string" description: "Country name." } } } } sum: { type: "integer" format: "int32" description: "Total sum of items in the list." } } } }