Table: confluence_space
Spaces in a Confluence instance.
Examples
Get basic info about the spaces
select id, key, name, type, statusfrom confluence_space;
Get the global
spaces
select *from confluence_spacewhere "type" = 'global';
Get personal, archived spaces
select *from confluence_spacewhere "type" = 'personal' and status = 'archived';
Schema for confluence_space
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
id | text | = | Automatically assigned when the space is created |
key | text | The key of the space. | |
name | text | The name of the space. | |
status | text | The status of the space. | |
type | text | The type of space. |