create-page
Generate and organize pages in Notion with structured content, using parentId for hierarchy, and specified titles and body text for clarity and organization.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
parentId | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"parentId": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}