action tcgdex_get_illustrators_illustrator { label: "get_illustrators_illustrator" provider: tcgdex method: GET path: "/illustrators/{illustrator}" encoding: json input: { type: "object" properties: { illustrator: { type: "string" } } required: ["illustrator"] additionalProperties: false } output: { type: "object" required: ["cards", "name"] properties: { cards: { type: "array" items: { type: "object" required: ["id", "localId", "name"] properties: { id: { type: "string" } image: { type: "string" } localId: { type: "string" } name: { type: "string" } } } } name: { type: "string" } } } }