action jellyfin_get_countries { label: "Gets known countries." provider: jellyfin method: GET path: "/Localization/Countries" encoding: json output: { type: "array" items: { type: "object" description: "Class CountryInfo." properties: { DisplayName: { type: "string" description: "Gets or sets the display name." } Name: { type: "string" description: "Gets or sets the name." } ThreeLetterISORegionName: { type: "string" description: "Gets or sets the name of the three letter ISO region." } TwoLetterISORegionName: { type: "string" description: "Gets or sets the name of the two letter ISO region." } } additionalProperties: false } } }