action medium_get_user_user_id_publications { label: "Get User's Publications" description: "Returns a list of `publication_ids` where the user is the editor and/or creator.\n" provider: medium method: GET path: "/user/{user_id}/publications" encoding: json input: { type: "object" properties: { user_id: { type: "string" } } required: ["user_id"] additionalProperties: false } output: { type: "object" properties: { publications: { type: "array" items: { type: "string" } } user_id: { type: "string" } } } }