action tcgdex_get_stages_stage { label: "get_stages_stage" provider: tcgdex method: GET path: "/stages/{stage}" encoding: json input: { type: "object" properties: { stage: { type: "string" } } required: ["stage"] 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" } } } } }