action evetech_get_characters_character_id_search { label: "Search on a string" description: "Search for entities that match a given sub-string.\n\n---\nAlternate route: `/dev/characters/{character_id}/search/`\n\nAlternate route: `/v3/characters/{character_id}/search/`\n\n---\nThis route is cached for up to 3600 seconds" provider: evetech method: GET path: "/characters/{character_id}/search/" encoding: json input: { type: "object" properties: { categories: { type: "string" } search: { type: "string" } strict: { type: "string" } } required: ["categories", "search"] additionalProperties: false } output: { type: "object" additionalProperties: true } }