action vocadb_get_api_song_lists_featured_names { label: "get_api_songLists_featured_names" provider: vocadb method: GET path: "/api/songLists/featured/names" encoding: json input: { type: "object" properties: { featuredCategory: { type: "string" enum: ["Nothing", "Concerts", "VocaloidRanking", "Pools", "Other"] } maxResults: { type: "integer" format: "int32" } nameMatchMode: { type: "string" enum: ["Auto", "Partial", "StartsWith", "Exact", "Words"] } query: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "string" } } }