action dodo_get_nh_fossils_groups { label: "All New Horizons fossil groups" description: "Get a list of all the fossil groups in *Animal Crossing: New Horizons*." provider: dodo method: GET path: "/nh/fossils/groups" encoding: json input: { type: "object" properties: { "Accept-Version": { type: "string" } "X-API-KEY": { type: "string" format: "uuid" } thumbsize: { type: "integer" } } required: ["Accept-Version", "X-API-KEY"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { description: { type: "string" description: "A description of the fossil group." } name: { type: "string" description: "The name of the fossil group." } room: { type: "integer" description: "The room where the fossil group can be found in the museum's fossil section." } url: { type: "string" description: "Link to the respective Nookipedia article." } } } } }