action tcgdex_get_suffixes_suffix { label: "get_suffixes_suffix" provider: tcgdex method: GET path: "/suffixes/{suffix}" encoding: json input: { type: "object" properties: { suffix: { type: "string" } } required: ["suffix"] additionalProperties: false } output: { type: "array" items: { type: "object" required: ["id", "localId", "name"] properties: { id: { type: "string" } image: { type: "string" } localId: { type: "string" } name: { type: "string" } } } } }