create-database
Generate structured databases in Notion by specifying a parent page ID, title, and properties to organize and manage data effectively within your workspace.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parentPageId | Yes | ||
properties | Yes | ||
title | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"parentPageId": {
"type": "string"
},
"properties": {
"additionalProperties": {},
"type": "object"
},
"title": {
"type": "string"
}
},
"required": [
"parentPageId",
"title",
"properties"
],
"type": "object"
}