action tcgdex_get_regulation_marks_regulation_mark { label: "get_regulation_marks_regulation_mark" provider: tcgdex method: GET path: "/regulation-marks/{regulation-mark}" encoding: json input: { type: "object" properties: { "regulation-mark": { type: "string" } } required: ["regulation-mark"] 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" } } } } }