action medium_get_related_tags_tag { label: "Get Related Tags" description: "Returns a list of `related_tags` for the given `tag`.\n" provider: medium method: GET path: "/related_tags/{tag}" encoding: json input: { type: "object" properties: { tag: { type: "string" } } required: ["tag"] additionalProperties: false } output: { type: "object" properties: { given_tag: { type: "string" } related_tags: { type: "array" items: { type: "string" } } } } }