Confluence · Schema
BlogPost
Represents a Confluence blog post.
CollaborationContent ManagementDocumentationKnowledge BaseWiki
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the blog post. |
| status | string | The current status of the blog post. |
| title | string | The title of the blog post. |
| spaceId | string | The ID of the space this blog post belongs to. |
| authorId | string | The Atlassian account ID of the blog post author. |
| createdAt | string | The ISO 8601 timestamp when the blog post was created. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "BlogPost",
"type": "object",
"description": "Represents a Confluence blog post.",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the blog post."
},
"status": {
"type": "string",
"description": "The current status of the blog post."
},
"title": {
"type": "string",
"description": "The title of the blog post."
},
"spaceId": {
"type": "string",
"description": "The ID of the space this blog post belongs to."
},
"authorId": {
"type": "string",
"description": "The Atlassian account ID of the blog post author."
},
"createdAt": {
"type": "string",
"description": "The ISO 8601 timestamp when the blog post was created."
}
}
}