action notion_retrieve_comments { label: "Retrieve comments" description: "Retrieve a user object using the ID specified in the request path." provider: notion method: GET path: "/v1/comments" encoding: form input: { type: "object" properties: { "Notion-Version": { type: "string" } block_id: { type: "string" } page_size: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { comment: { type: "object" properties: {} } has_more: { type: "boolean" } next_cursor: { type: "object" } object: { type: "string" } results: { type: "array" items: { type: "object" properties: { created_by: { type: "object" properties: { id: { type: "string" } object: { type: "string" } } } created_time: { type: "string" } discussion_id: { type: "string" } id: { type: "string" } last_edited_time: { type: "string" } object: { type: "string" } parent: { type: "object" properties: { block_id: { type: "string" } type: { type: "string" } } } rich_text: { type: "array" items: { type: "object" properties: { annotations: { type: "object" properties: { bold: { type: "boolean" } code: { type: "boolean" } color: { type: "string" } italic: { type: "boolean" } strikethrough: { type: "boolean" } underline: { type: "boolean" } } } href: { type: "object" } plain_text: { type: "string" } text: { type: "object" properties: { content: { type: "string" } link: { type: "object" } } } type: { type: "string" } } } } } } } type: { type: "string" } } } }