action dodo_get_nh_fossils_all { label: "All New Horizons fossil groups or individual fossil" description: "Get a list of all the fossil groups with their respective individual fossils in *Animal Crossing: New Horizons*." provider: dodo method: GET path: "/nh/fossils/all" 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." } fossils: { type: "array" description: "An array of objects, each object representing a fossil that belongs to the given group." items: { type: "object" properties: { colors: { type: "array" items: { type: "string" enum: ["Aqua", "Beige", "Black", "Blue", "Brown", "Colorful", "Gray", "Green", "Orange", "Pink", "Purple", "Red", "White", "Yellow"] } } fossil_group: { type: "string" } hha_base: { type: "integer" } image_url: { type: "string" } interactable: { type: "boolean" } length: { type: "integer" } name: { type: "string" } sell: { type: "integer" } url: { type: "string" } width: { type: "integer" } } } } 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." } } } } }