Confluence · Schema

BlogPostCreateRequest

CollaborationContent ManagementDocumentationKnowledge BaseWiki

Properties

Name Type Description
spaceId string The ID of the space to create the blog post in.
status string The status of the blog post.
title string The title of the blog post.
View JSON Schema on GitHub

JSON Schema

confluence-cloud-v2-blog-post-create-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "BlogPostCreateRequest",
  "type": "object",
  "properties": {
    "spaceId": {
      "type": "string",
      "description": "The ID of the space to create the blog post in."
    },
    "status": {
      "type": "string",
      "description": "The status of the blog post."
    },
    "title": {
      "type": "string",
      "description": "The title of the blog post."
    }
  }
}