action notion_append_block_children { label: "Append block children" description: "Append block children" provider: notion method: PATCH path: "/v1/blocks/{id}/children" encoding: json input: { type: "object" properties: { "Notion-Version": { type: "string" } children: { type: "array" items: { type: "object" properties: { heading_2: { type: "object" properties: { text: { type: "array" items: { type: "object" properties: { text: { type: "object" properties: { content: { type: "string" } } } type: { type: "string" } } } } } } object: { type: "string" } paragraph: { type: "object" properties: { rich_text: { type: "array" items: { type: "object" properties: { text: { type: "object" properties: { content: { type: "string" } link: { type: "object" properties: { url: { type: "string" } } } } } type: { type: "string" } } } } } } type: { type: "string" } } } } } additionalProperties: false } output: { type: "object" properties: { child_page: { type: "object" properties: { title: { type: "string" } } } created_time: { type: "string" } has_children: { type: "boolean" } id: { type: "string" } last_edited_time: { type: "string" } object: { type: "string" } type: { type: "string" } } } }