steampipe plugin install ellisvalentiner/confluence

Table: confluence_content_body_view

Content body from a Confluence instance in the view format

Examples

Get the body for content in the view format

select
*
from
confluence_content_body_view;

Get content body in the view format

select
*
from
confluence_content_body_view
where
representation = 'view';

Get content that mentions steampipe in the body

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

Schema for confluence_content_body_view

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