action bungie_destiny2_search_destiny_entities { label: "Destiny2.SearchDestinyEntities" description: "Gets a page list of Destiny items." provider: bungie method: GET path: "/Destiny2/Armory/Search/{type}/{searchTerm}/" encoding: json input: { type: "object" properties: { page: { type: "integer" format: "int32" } searchTerm: { type: "string" } type: { type: "string" } } required: ["searchTerm", "type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }