*** This version of Confluence is for testing only and contains a copy of content from June 29th 2026. No changes will be preserved. ***
...
jsonb_extract_path_text (values.jsonb,'value') AS value_name ----- this extracts the "value" element from the values object that we careated created in the cross join below
------ NOTE: the two json extract statements above can be replaced by a shorthand formula, using the "#>>" operator:
values.jsonb #>> '{id}'
values.jsonb #>> '{value}'
...