Table: confluence_content_body_storage
Content body from a Confluence instance in the storage
format
Examples
Get the body for content in the storage format
select *from confluence_content_body_storage;
Get content body in the storage
format
select *from confluence_content_body_storagewhere representation = 'storage';
Get content that mentions steampipe
in the body
select id, valuefrom confluence_content_body_storagewhere "value" ilike '%steampipe%';
Schema for confluence_content_body_storage
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
id | text | The ID of the content. | |
representation | text | The representation type of the content. | |
value | text | The content body. |