steampipe plugin install ellisvalentiner/confluence

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_storage
where
representation = 'storage';

Get content that mentions steampipe in the body

select
id,
value
from
confluence_content_body_storage
where
"value" ilike '%steampipe%';

Schema for confluence_content_body_storage

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
idtextThe ID of the content.
representationtextThe representation type of the content.
valuetextThe content body.