{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PageCreateRequest",
"type": "object",
"properties": {
"spaceId": {
"type": "string",
"description": "The ID of the space to create the page in."
},
"status": {
"type": "string",
"description": "The status of the page."
},
"title": {
"type": "string",
"description": "The title of the page."
},
"parentId": {
"type": "string",
"description": "The ID of the parent page. If omitted, the page will be a root-level page."
}
}
}