action dodo_get_nh_fossils_all_fossil { label: "Single New Horizons fossil group with individual fossils" description: "Retrieve information about a specific fossil group with their respective individual fossils in *Animal Crossing: New Horizons*." provider: dodo method: GET path: "/nh/fossils/all/{fossil}" encoding: json input: { type: "object" properties: { "Accept-Version": { type: "string" } "X-API-KEY": { type: "string" format: "uuid" } fossil: { type: "string" } thumbsize: { type: "integer" } } required: ["Accept-Version", "X-API-KEY", "fossil"] additionalProperties: false } output: { 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" } } } } matched: { type: "object" properties: { name: { type: "string" description: "The name of the fossil or fossil group that matched the given query." } type: { type: "string" description: "If the query given was a fossil group, `group` would be returned. Otherwise, `individual` is returned." } } } 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." } } } }