Confluence · Schema
Space
Represents a Confluence space.
CollaborationContent ManagementDocumentationKnowledge BaseWiki
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the space. |
| key | string | The key of the space, used in URLs. |
| name | string | The name of the space. |
| type | string | The type of space. |
| status | string | The status of the space. |
| authorId | string | The Atlassian account ID of the space creator. |
| createdAt | string | The ISO 8601 timestamp when the space was created. |
| homepageId | string | The ID of the space homepage. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Space",
"type": "object",
"description": "Represents a Confluence space.",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the space."
},
"key": {
"type": "string",
"description": "The key of the space, used in URLs."
},
"name": {
"type": "string",
"description": "The name of the space."
},
"type": {
"type": "string",
"description": "The type of space."
},
"status": {
"type": "string",
"description": "The status of the space."
},
"authorId": {
"type": "string",
"description": "The Atlassian account ID of the space creator."
},
"createdAt": {
"type": "string",
"description": "The ISO 8601 timestamp when the space was created."
},
"homepageId": {
"type": "string",
"description": "The ID of the space homepage."
}
}
}