action files_file_comment_list_for_path { label: "List File Comments by path" description: "List File Comments by path" provider: files method: GET path: "/file_comments/files/{path}" encoding: json input: { type: "object" properties: { cursor: { type: "string" } path: { type: "string" } per_page: { type: "integer" format: "int32" } } required: ["path"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "List File Comments by path" properties: { body: { type: "string" description: "Comment body." } id: { type: "integer" format: "int32" description: "File Comment ID" } reactions: { type: "array" description: "Reactions to this comment." items: { type: "object" description: "Create File Comment Reaction" properties: { emoji: { type: "string" description: "Emoji used in the reaction." } id: { type: "integer" format: "int32" description: "Reaction ID" } } } } } } } }