action notion_retrieve_block_children { label: "Retrieve block children" description: "Retrieve block children" provider: notion method: GET path: "/v1/blocks/{id}/children" encoding: json input: { type: "object" properties: { "Notion-Version": { type: "string" } page_size: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { has_more: { type: "boolean" } next_cursor: { type: "object" } object: { type: "string" } results: { type: "array" items: { type: "object" properties: { created_time: { type: "string" } has_children: { type: "boolean" } id: { type: "string" } last_edited_time: { type: "string" } object: { type: "string" } paragraph: { type: "object" properties: { 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" } unsupported: { type: "object" properties: {} } } } } } } }