diff --git a/packages/@cdktf/provider-generator/lib/get/__tests__/generator/__snapshots__/skipped-attributes.test.ts.snap b/packages/@cdktf/provider-generator/lib/get/__tests__/generator/__snapshots__/skipped-attributes.test.ts.snap index f4e73ecc24..2f1659be2f 100644 --- a/packages/@cdktf/provider-generator/lib/get/__tests__/generator/__snapshots__/skipped-attributes.test.ts.snap +++ b/packages/@cdktf/provider-generator/lib/get/__tests__/generator/__snapshots__/skipped-attributes.test.ts.snap @@ -1,6 +1,331 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`skips attributes in the disallow list: quicksight-template 1`] = ` +exports[`skips attribute type attributes in the disallow list: data-quicksight-analysis 1`] = ` +"// https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/quicksight_analysis +// generated from terraform resource schema + +import { Construct } from 'constructs'; +import * as cdktf from 'cdktf'; + +// Configuration + +export interface DataAwsQuicksightAnalysisConfig extends cdktf.TerraformMetaArguments { + /** + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/quicksight_analysis#analysis_id DataAwsQuicksightAnalysis#analysis_id} + */ + readonly analysisId: string; + /** + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/quicksight_analysis#aws_account_id DataAwsQuicksightAnalysis#aws_account_id} + */ + readonly awsAccountId?: string; + /** + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/quicksight_analysis#id DataAwsQuicksightAnalysis#id} + * + * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. + * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. + */ + readonly id?: string; + /** + * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/quicksight_analysis#tags DataAwsQuicksightAnalysis#tags} + */ + readonly tags?: { [key: string]: string }; +} +export interface DataAwsQuicksightAnalysisPermissions { +} + +export function dataAwsQuicksightAnalysisPermissionsToTerraform(struct?: DataAwsQuicksightAnalysisPermissions): any { + if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) { return struct; } + if (cdktf.isComplexElement(struct)) { + throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration"); + } + return { + } +} + + +export function dataAwsQuicksightAnalysisPermissionsToHclTerraform(struct?: DataAwsQuicksightAnalysisPermissions): any { + if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) { return struct; } + if (cdktf.isComplexElement(struct)) { + throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration"); + } + const attrs = { + }; + return attrs; +} + +export class DataAwsQuicksightAnalysisPermissionsOutputReference extends cdktf.ComplexObject { + private isEmptyObject = false; + + /** + * @param terraformResource The parent resource + * @param terraformAttribute The attribute on the parent resource this class is referencing + * @param complexObjectIndex the index of this item in the list + * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) + */ + public constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean) { + super(terraformResource, terraformAttribute, complexObjectIsFromSet, complexObjectIndex); + } + + public get internalValue(): DataAwsQuicksightAnalysisPermissions | undefined { + let hasAnyValues = this.isEmptyObject; + const internalValueResult: any = {}; + return hasAnyValues ? internalValueResult : undefined; + } + + public set internalValue(value: DataAwsQuicksightAnalysisPermissions | undefined) { + if (value === undefined) { + this.isEmptyObject = false; + } + else { + this.isEmptyObject = Object.keys(value).length === 0; + } + } + + // actions - computed: true, optional: false, required: false + public get actions() { + return cdktf.Fn.tolist(this.getListAttribute('actions')); + } + + // principal - computed: true, optional: false, required: false + public get principal() { + return this.getStringAttribute('principal'); + } +} + +export class DataAwsQuicksightAnalysisPermissionsList extends cdktf.ComplexList { + + /** + * @param terraformResource The parent resource + * @param terraformAttribute The attribute on the parent resource this class is referencing + * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) + */ + constructor(protected terraformResource: cdktf.IInterpolatingParent, protected terraformAttribute: string, protected wrapsSet: boolean) { + super(terraformResource, terraformAttribute, wrapsSet) + } + + /** + * @param index the index of the item to return + */ + public get(index: number): DataAwsQuicksightAnalysisPermissionsOutputReference { + return new DataAwsQuicksightAnalysisPermissionsOutputReference(this.terraformResource, this.terraformAttribute, index, this.wrapsSet); + } +} + +/** +* Represents a {@link https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/quicksight_analysis aws_quicksight_analysis} +*/ +export class DataAwsQuicksightAnalysis extends cdktf.TerraformDataSource { + + // ================= + // STATIC PROPERTIES + // ================= + public static readonly tfResourceType = "aws_quicksight_analysis"; + + // ============== + // STATIC Methods + // ============== + /** + * Generates CDKTF code for importing a DataAwsQuicksightAnalysis resource upon running "cdktf plan " + * @param scope The scope in which to define this construct + * @param importToId The construct id used in the generated config for the DataAwsQuicksightAnalysis to import + * @param importFromId The id of the existing DataAwsQuicksightAnalysis that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/quicksight_analysis#import import section} in the documentation of this resource for the id to use + * @param provider? Optional instance of the provider where the DataAwsQuicksightAnalysis to import is found + */ + public static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider) { + return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "aws_quicksight_analysis", importId: importFromId, provider }); + } + + // =========== + // INITIALIZER + // =========== + + /** + * Create a new {@link https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/quicksight_analysis aws_quicksight_analysis} Data Source + * + * @param scope The scope in which to define this construct + * @param id The scoped construct ID. Must be unique amongst siblings in the same scope + * @param options DataAwsQuicksightAnalysisConfig + */ + public constructor(scope: Construct, id: string, config: DataAwsQuicksightAnalysisConfig) { + super(scope, id, { + terraformResourceType: 'aws_quicksight_analysis', + terraformGeneratorMetadata: { + providerName: 'aws' + }, + provider: config.provider, + dependsOn: config.dependsOn, + count: config.count, + lifecycle: config.lifecycle, + provisioners: config.provisioners, + connection: config.connection, + forEach: config.forEach + }); + this._analysisId = config.analysisId; + this._awsAccountId = config.awsAccountId; + this._id = config.id; + this._tags = config.tags; + } + + // ========== + // ATTRIBUTES + // ========== + + // analysis_id - computed: false, optional: false, required: true + private _analysisId?: string; + public get analysisId() { + return this.getStringAttribute('analysis_id'); + } + public set analysisId(value: string) { + this._analysisId = value; + } + // Temporarily expose input value. Use with caution. + public get analysisIdInput() { + return this._analysisId; + } + + // arn - computed: true, optional: false, required: false + public get arn() { + return this.getStringAttribute('arn'); + } + + // aws_account_id - computed: true, optional: true, required: false + private _awsAccountId?: string; + public get awsAccountId() { + return this.getStringAttribute('aws_account_id'); + } + public set awsAccountId(value: string) { + this._awsAccountId = value; + } + public resetAwsAccountId() { + this._awsAccountId = undefined; + } + // Temporarily expose input value. Use with caution. + public get awsAccountIdInput() { + return this._awsAccountId; + } + + // created_time - computed: true, optional: false, required: false + public get createdTime() { + return this.getStringAttribute('created_time'); + } + + // definition - computed: true, optional: false, required: false + public get definition() { + return this.interpolationForAttribute('definition'); + } + + // id - computed: true, optional: true, required: false + private _id?: string; + public get id() { + return this.getStringAttribute('id'); + } + public set id(value: string) { + this._id = value; + } + public resetId() { + this._id = undefined; + } + // Temporarily expose input value. Use with caution. + public get idInput() { + return this._id; + } + + // last_published_time - computed: true, optional: false, required: false + public get lastPublishedTime() { + return this.getStringAttribute('last_published_time'); + } + + // last_updated_time - computed: true, optional: false, required: false + public get lastUpdatedTime() { + return this.getStringAttribute('last_updated_time'); + } + + // name - computed: true, optional: false, required: false + public get name() { + return this.getStringAttribute('name'); + } + + // permissions - computed: true, optional: false, required: false + private _permissions = new DataAwsQuicksightAnalysisPermissionsList(this, "permissions", false); + public get permissions() { + return this._permissions; + } + + // status - computed: true, optional: false, required: false + public get status() { + return this.getStringAttribute('status'); + } + + // tags - computed: true, optional: true, required: false + private _tags?: { [key: string]: string }; + public get tags() { + return this.getStringMapAttribute('tags'); + } + public set tags(value: { [key: string]: string }) { + this._tags = value; + } + public resetTags() { + this._tags = undefined; + } + // Temporarily expose input value. Use with caution. + public get tagsInput() { + return this._tags; + } + + // theme_arn - computed: true, optional: false, required: false + public get themeArn() { + return this.getStringAttribute('theme_arn'); + } + + // ========= + // SYNTHESIS + // ========= + + protected synthesizeAttributes(): { [name: string]: any } { + return { + analysis_id: cdktf.stringToTerraform(this._analysisId), + aws_account_id: cdktf.stringToTerraform(this._awsAccountId), + id: cdktf.stringToTerraform(this._id), + tags: cdktf.hashMapper(cdktf.stringToTerraform)(this._tags), + }; + } + + protected synthesizeHclAttributes(): { [name: string]: any } { + const attrs = { + analysis_id: { + value: cdktf.stringToHclTerraform(this._analysisId), + isBlock: false, + type: "simple", + storageClassType: "string", + }, + aws_account_id: { + value: cdktf.stringToHclTerraform(this._awsAccountId), + isBlock: false, + type: "simple", + storageClassType: "string", + }, + id: { + value: cdktf.stringToHclTerraform(this._id), + isBlock: false, + type: "simple", + storageClassType: "string", + }, + tags: { + value: cdktf.hashMapperHcl(cdktf.stringToHclTerraform)(this._tags), + isBlock: false, + type: "map", + storageClassType: "stringMap", + }, + }; + + // remove undefined attributes + return Object.fromEntries(Object.entries(attrs).filter(([_, value]) => value !== undefined && value.value !== undefined )) + } +} +" +`; + +exports[`skips block type attributes in the disallow list: quicksight-template 1`] = ` "// https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/quicksight_template // generated from terraform resource schema diff --git a/packages/@cdktf/provider-generator/lib/get/__tests__/generator/fixtures/data_aws_quicksight_analysis.fixture.json b/packages/@cdktf/provider-generator/lib/get/__tests__/generator/fixtures/data_aws_quicksight_analysis.fixture.json new file mode 100644 index 0000000000..d641ee6b55 --- /dev/null +++ b/packages/@cdktf/provider-generator/lib/get/__tests__/generator/fixtures/data_aws_quicksight_analysis.fixture.json @@ -0,0 +1,81864 @@ +{ + "format_version": "1.0", + "provider_schemas": { + "registry.terraform.io/hashicorp/aws": { + "data_source_schemas": { + "aws_quicksight_analysis": { + "version": 0, + "block": { + "attributes": { + "analysis_id": { + "type": "string", + "description_kind": "plain", + "required": true + }, + "arn": { + "type": "string", + "description_kind": "plain", + "computed": true + }, + "aws_account_id": { + "type": "string", + "description_kind": "plain", + "optional": true, + "computed": true + }, + "created_time": { + "type": "string", + "description_kind": "plain", + "computed": true + }, + "definition": { + "type": [ + "list", + [ + "object", + { + "analysis_defaults": [ + "list", + [ + "object", + { + "default_new_sheet_configuration": [ + "list", + [ + "object", + { + "interactive_layout_configuration": [ + "list", + [ + "object", + { + "free_form": [ + "list", + [ + "object", + { + "canvas_size_options": [ + "list", + [ + "object", + { + "screen_canvas_size_options": [ + "list", + [ + "object", + { + "optimized_view_port_width": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "grid": [ + "list", + [ + "object", + { + "canvas_size_options": [ + "list", + [ + "object", + { + "screen_canvas_size_options": [ + "list", + [ + "object", + { + "optimized_view_port_width": "string", + "resize_option": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "paginated_layout_configuration": [ + "list", + [ + "object", + { + "section_based": [ + "list", + [ + "object", + { + "canvas_size_options": [ + "list", + [ + "object", + { + "paper_canvas_size_options": [ + "list", + [ + "object", + { + "paper_margin": [ + "list", + [ + "object", + { + "bottom": "string", + "left": "string", + "right": "string", + "top": "string" + } + ] + ], + "paper_orientation": "string", + "paper_size": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "sheet_content_type": "string" + } + ] + ] + } + ] + ], + "calculated_fields": [ + "set", + [ + "object", + { + "data_set_identifier": "string", + "expression": "string", + "name": "string" + } + ] + ], + "column_configurations": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "number_format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "string_format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "role": "string" + } + ] + ], + "data_set_identifiers_declarations": [ + "list", + [ + "object", + { + "data_set_arn": "string", + "identifier": "string" + } + ] + ], + "filter_groups": [ + "list", + [ + "object", + { + "cross_dataset": "string", + "filter_group_id": "string", + "filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "configuration": [ + "list", + [ + "object", + { + "custom_filter_configuration": [ + "list", + [ + "object", + { + "category_value": "string", + "match_operator": "string", + "null_option": "string", + "parameter_name": "string", + "select_all_options": "string" + } + ] + ], + "custom_filter_list_configuration": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "match_operator": "string", + "null_option": "string", + "select_all_options": "string" + } + ] + ], + "filter_list_configuration": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "match_operator": "string", + "select_all_options": "string" + } + ] + ] + } + ] + ], + "filter_id": "string" + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "filter_id": "string", + "match_operator": "string", + "null_option": "string", + "parameter_name": "string", + "select_all_options": "string", + "value": "number" + } + ] + ], + "numeric_range_filter": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "filter_id": "string", + "include_maximum": "bool", + "include_minimum": "bool", + "null_option": "string", + "range_maximum": [ + "list", + [ + "object", + { + "parameter": "string", + "static_value": "number" + } + ] + ], + "range_minimum": [ + "list", + [ + "object", + { + "parameter": "string", + "static_value": "number" + } + ] + ], + "select_all_options": "string" + } + ] + ], + "relative_dates_filter": [ + "list", + [ + "object", + { + "anchor_date_configuration": [ + "list", + [ + "object", + { + "anchor_option": "string", + "parameter_name": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "exclude_period_configuration": [ + "list", + [ + "object", + { + "amount": "number", + "granularity": "string", + "status": "string" + } + ] + ], + "filter_id": "string", + "minimum_granularity": "string", + "null_option": "string", + "parameter_name": "string", + "relative_date_type": "string", + "relative_date_value": "number", + "time_granularity": "string" + } + ] + ], + "time_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "filter_id": "string", + "parameter_name": "string", + "time_granularity": "string", + "value": "string" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "exclude_period_configuration": [ + "list", + [ + "object", + { + "amount": "number", + "granularity": "string", + "status": "string" + } + ] + ], + "filter_id": "string", + "include_maximum": "bool", + "include_minimum": "bool", + "null_option": "string", + "range_maximum_value": [ + "list", + [ + "object", + { + "parameter": "string", + "rolling_date": [ + "list", + [ + "object", + { + "data_set_identifier": "string", + "expression": "string" + } + ] + ], + "static_value": "string" + } + ] + ], + "range_minimum_value": [ + "list", + [ + "object", + { + "parameter": "string", + "rolling_date": [ + "list", + [ + "object", + { + "data_set_identifier": "string", + "expression": "string" + } + ] + ], + "static_value": "string" + } + ] + ], + "time_granularity": "string" + } + ] + ], + "top_bottom_filter": [ + "list", + [ + "object", + { + "aggregation_sort_configuration": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "sort_direction": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "filter_id": "string", + "limit": "number", + "parameter_name": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "scope_configuration": [ + "list", + [ + "object", + { + "selected_sheets": [ + "list", + [ + "object", + { + "sheet_visual_scoping_configurations": [ + "list", + [ + "object", + { + "scope": "string", + "sheet_id": "string", + "visual_ids": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "status": "string" + } + ] + ], + "parameter_declarations": [ + "set", + [ + "object", + { + "date_time_parameter_declaration": [ + "list", + [ + "object", + { + "default_values": [ + "list", + [ + "object", + { + "dynamic_value": [ + "list", + [ + "object", + { + "default_value_column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "group_name_column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "user_name_column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "rolling_date": [ + "list", + [ + "object", + { + "data_set_identifier": "string", + "expression": "string" + } + ] + ], + "static_values": [ + "list", + "string" + ] + } + ] + ], + "name": "string", + "time_granularity": "string", + "values_when_unset": [ + "list", + [ + "object", + { + "custom_value": "string", + "value_when_unset_option": "string" + } + ] + ] + } + ] + ], + "decimal_parameter_declaration": [ + "list", + [ + "object", + { + "default_values": [ + "list", + [ + "object", + { + "dynamic_value": [ + "list", + [ + "object", + { + "default_value_column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "group_name_column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "user_name_column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "static_values": [ + "list", + "number" + ] + } + ] + ], + "name": "string", + "parameter_value_type": "string", + "values_when_unset": [ + "list", + [ + "object", + { + "custom_value": "number", + "value_when_unset_option": "string" + } + ] + ] + } + ] + ], + "integer_parameter_declaration": [ + "list", + [ + "object", + { + "default_values": [ + "list", + [ + "object", + { + "dynamic_value": [ + "list", + [ + "object", + { + "default_value_column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "group_name_column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "user_name_column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "static_values": [ + "list", + "number" + ] + } + ] + ], + "name": "string", + "parameter_value_type": "string", + "values_when_unset": [ + "list", + [ + "object", + { + "custom_value": "number", + "value_when_unset_option": "string" + } + ] + ] + } + ] + ], + "string_parameter_declaration": [ + "list", + [ + "object", + { + "default_values": [ + "list", + [ + "object", + { + "dynamic_value": [ + "list", + [ + "object", + { + "default_value_column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "group_name_column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "user_name_column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "static_values": [ + "list", + "string" + ] + } + ] + ], + "name": "string", + "parameter_value_type": "string", + "values_when_unset": [ + "list", + [ + "object", + { + "custom_value": "string", + "value_when_unset_option": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sheets": [ + "list", + [ + "object", + { + "content_type": "string", + "description": "string", + "filter_controls": [ + "list", + [ + "object", + { + "date_time_picker": [ + "list", + [ + "object", + { + "display_options": [ + "list", + [ + "object", + { + "date_time_format": "string", + "title_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ] + } + ] + ], + "filter_control_id": "string", + "source_filter_id": "string", + "title": "string", + "type": "string" + } + ] + ], + "dropdown": [ + "list", + [ + "object", + { + "cascading_control_configuration": [ + "list", + [ + "object", + { + "source_controls": [ + "list", + [ + "object", + { + "column_to_match": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "source_sheet_control_id": "string" + } + ] + ] + } + ] + ], + "display_options": [ + "list", + [ + "object", + { + "select_all_options": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "title_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ] + } + ] + ], + "filter_control_id": "string", + "selectable_values": [ + "list", + [ + "object", + { + "values": [ + "list", + "string" + ] + } + ] + ], + "source_filter_id": "string", + "title": "string", + "type": "string" + } + ] + ], + "list": [ + "list", + [ + "object", + { + "cascading_control_configuration": [ + "list", + [ + "object", + { + "source_controls": [ + "list", + [ + "object", + { + "column_to_match": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "source_sheet_control_id": "string" + } + ] + ] + } + ] + ], + "display_options": [ + "list", + [ + "object", + { + "search_options": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "select_all_options": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "title_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ] + } + ] + ], + "filter_control_id": "string", + "selectable_values": [ + "list", + [ + "object", + { + "values": [ + "list", + "string" + ] + } + ] + ], + "source_filter_id": "string", + "title": "string", + "type": "string" + } + ] + ], + "relative_date_time": [ + "list", + [ + "object", + { + "display_options": [ + "list", + [ + "object", + { + "date_time_format": "string", + "title_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ] + } + ] + ], + "filter_control_id": "string", + "source_filter_id": "string", + "title": "string" + } + ] + ], + "slider": [ + "list", + [ + "object", + { + "display_options": [ + "list", + [ + "object", + { + "title_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ] + } + ] + ], + "filter_control_id": "string", + "maximum_value": "number", + "minimum_value": "number", + "source_filter_id": "string", + "step_size": "number", + "title": "string", + "type": "string" + } + ] + ], + "text_area": [ + "list", + [ + "object", + { + "delimiter": "string", + "display_options": [ + "list", + [ + "object", + { + "placeholder_options": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "title_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ] + } + ] + ], + "filter_control_id": "string", + "source_filter_id": "string", + "title": "string" + } + ] + ], + "text_field": [ + "list", + [ + "object", + { + "display_options": [ + "list", + [ + "object", + { + "placeholder_options": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "title_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ] + } + ] + ], + "filter_control_id": "string", + "source_filter_id": "string", + "title": "string" + } + ] + ] + } + ] + ], + "layouts": [ + "list", + [ + "object", + { + "configuration": [ + "list", + [ + "object", + { + "free_form_layout": [ + "list", + [ + "object", + { + "canvas_size_options": [ + "list", + [ + "object", + { + "screen_canvas_size_options": [ + "list", + [ + "object", + { + "optimized_view_port_width": "string" + } + ] + ] + } + ] + ], + "elements": [ + "list", + [ + "object", + { + "background_style": [ + "list", + [ + "object", + { + "color": "string", + "visibility": "string" + } + ] + ], + "border_style": [ + "list", + [ + "object", + { + "color": "string", + "visibility": "string" + } + ] + ], + "element_id": "string", + "element_type": "string", + "height": "string", + "loading_animation": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "rendering_rules": [ + "list", + [ + "object", + { + "configuration_overrides": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "expression": "string" + } + ] + ], + "selected_border_style": [ + "list", + [ + "object", + { + "color": "string", + "visibility": "string" + } + ] + ], + "visibility": "string", + "width": "string", + "x_axis_location": "string", + "y_axis_location": "string" + } + ] + ] + } + ] + ], + "grid_layout": [ + "list", + [ + "object", + { + "canvas_size_options": [ + "list", + [ + "object", + { + "screen_canvas_size_options": [ + "list", + [ + "object", + { + "optimized_view_port_width": "string", + "resize_option": "string" + } + ] + ] + } + ] + ], + "elements": [ + "list", + [ + "object", + { + "column_index": "string", + "column_span": "number", + "element_id": "string", + "element_type": "string", + "row_index": "string", + "row_span": "number" + } + ] + ] + } + ] + ], + "section_based_layout": [ + "list", + [ + "object", + { + "body_sections": [ + "list", + [ + "object", + { + "content": [ + "list", + [ + "object", + { + "layout": [ + "list", + [ + "object", + { + "free_form_layout": [ + "list", + [ + "object", + { + "elements": [ + "list", + [ + "object", + { + "background_style": [ + "list", + [ + "object", + { + "color": "string", + "visibility": "string" + } + ] + ], + "border_style": [ + "list", + [ + "object", + { + "color": "string", + "visibility": "string" + } + ] + ], + "element_id": "string", + "element_type": "string", + "height": "string", + "loading_animation": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "rendering_rules": [ + "list", + [ + "object", + { + "configuration_overrides": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "expression": "string" + } + ] + ], + "selected_border_style": [ + "list", + [ + "object", + { + "color": "string", + "visibility": "string" + } + ] + ], + "visibility": "string", + "width": "string", + "x_axis_location": "string", + "y_axis_location": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "page_break_configuration": [ + "list", + [ + "object", + { + "after": [ + "list", + [ + "object", + { + "status": "string" + } + ] + ] + } + ] + ], + "section_id": "string", + "style": [ + "list", + [ + "object", + { + "height": "string", + "padding": [ + "list", + [ + "object", + { + "bottom": "string", + "left": "string", + "right": "string", + "top": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "canvas_size_options": [ + "list", + [ + "object", + { + "paper_canvas_size_options": [ + "list", + [ + "object", + { + "paper_margin": [ + "list", + [ + "object", + { + "bottom": "string", + "left": "string", + "right": "string", + "top": "string" + } + ] + ], + "paper_orientation": "string", + "paper_size": "string" + } + ] + ] + } + ] + ], + "footer_sections": [ + "list", + [ + "object", + { + "layout": [ + "list", + [ + "object", + { + "free_form_layout": [ + "list", + [ + "object", + { + "elements": [ + "list", + [ + "object", + { + "background_style": [ + "list", + [ + "object", + { + "color": "string", + "visibility": "string" + } + ] + ], + "border_style": [ + "list", + [ + "object", + { + "color": "string", + "visibility": "string" + } + ] + ], + "element_id": "string", + "element_type": "string", + "height": "string", + "loading_animation": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "rendering_rules": [ + "list", + [ + "object", + { + "configuration_overrides": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "expression": "string" + } + ] + ], + "selected_border_style": [ + "list", + [ + "object", + { + "color": "string", + "visibility": "string" + } + ] + ], + "visibility": "string", + "width": "string", + "x_axis_location": "string", + "y_axis_location": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "section_id": "string", + "style": [ + "list", + [ + "object", + { + "height": "string", + "padding": [ + "list", + [ + "object", + { + "bottom": "string", + "left": "string", + "right": "string", + "top": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "header_sections": [ + "list", + [ + "object", + { + "layout": [ + "list", + [ + "object", + { + "free_form_layout": [ + "list", + [ + "object", + { + "elements": [ + "list", + [ + "object", + { + "background_style": [ + "list", + [ + "object", + { + "color": "string", + "visibility": "string" + } + ] + ], + "border_style": [ + "list", + [ + "object", + { + "color": "string", + "visibility": "string" + } + ] + ], + "element_id": "string", + "element_type": "string", + "height": "string", + "loading_animation": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "rendering_rules": [ + "list", + [ + "object", + { + "configuration_overrides": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "expression": "string" + } + ] + ], + "selected_border_style": [ + "list", + [ + "object", + { + "color": "string", + "visibility": "string" + } + ] + ], + "visibility": "string", + "width": "string", + "x_axis_location": "string", + "y_axis_location": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "section_id": "string", + "style": [ + "list", + [ + "object", + { + "height": "string", + "padding": [ + "list", + [ + "object", + { + "bottom": "string", + "left": "string", + "right": "string", + "top": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "name": "string", + "parameter_controls": [ + "list", + [ + "object", + { + "date_time_picker": [ + "list", + [ + "object", + { + "display_options": [ + "list", + [ + "object", + { + "date_time_format": "string", + "title_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ] + } + ] + ], + "parameter_control_id": "string", + "source_parameter_name": "string", + "title": "string" + } + ] + ], + "dropdown": [ + "list", + [ + "object", + { + "cascading_control_configuration": [ + "list", + [ + "object", + { + "source_controls": [ + "list", + [ + "object", + { + "column_to_match": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "source_sheet_control_id": "string" + } + ] + ] + } + ] + ], + "display_options": [ + "list", + [ + "object", + { + "select_all_options": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "title_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ] + } + ] + ], + "parameter_control_id": "string", + "selectable_values": [ + "list", + [ + "object", + { + "link_to_data_set_column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "values": [ + "list", + "string" + ] + } + ] + ], + "source_parameter_name": "string", + "title": "string", + "type": "string" + } + ] + ], + "list": [ + "list", + [ + "object", + { + "cascading_control_configuration": [ + "list", + [ + "object", + { + "source_controls": [ + "list", + [ + "object", + { + "column_to_match": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "source_sheet_control_id": "string" + } + ] + ] + } + ] + ], + "display_options": [ + "list", + [ + "object", + { + "search_options": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "select_all_options": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "title_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ] + } + ] + ], + "parameter_control_id": "string", + "selectable_values": [ + "list", + [ + "object", + { + "link_to_data_set_column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "values": [ + "list", + "string" + ] + } + ] + ], + "source_parameter_name": "string", + "title": "string", + "type": "string" + } + ] + ], + "slider": [ + "list", + [ + "object", + { + "display_options": [ + "list", + [ + "object", + { + "title_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ] + } + ] + ], + "maximum_value": "number", + "minimum_value": "number", + "parameter_control_id": "string", + "source_parameter_name": "string", + "step_size": "number", + "title": "string" + } + ] + ], + "text_area": [ + "list", + [ + "object", + { + "delimiter": "string", + "display_options": [ + "list", + [ + "object", + { + "placeholder_options": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "title_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ] + } + ] + ], + "parameter_control_id": "string", + "source_parameter_name": "string", + "title": "string" + } + ] + ], + "text_field": [ + "list", + [ + "object", + { + "display_options": [ + "list", + [ + "object", + { + "placeholder_options": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "title_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ] + } + ] + ], + "parameter_control_id": "string", + "source_parameter_name": "string", + "title": "string" + } + ] + ] + } + ] + ], + "sheet_control_layouts": [ + "list", + [ + "object", + { + "configuration": [ + "list", + [ + "object", + { + "grid_layout": [ + "list", + [ + "object", + { + "canvas_size_options": [ + "list", + [ + "object", + { + "screen_canvas_size_options": [ + "list", + [ + "object", + { + "optimized_view_port_width": "string", + "resize_option": "string" + } + ] + ] + } + ] + ], + "elements": [ + "list", + [ + "object", + { + "column_index": "string", + "column_span": "number", + "element_id": "string", + "element_type": "string", + "row_index": "string", + "row_span": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "sheet_id": "string", + "text_boxes": [ + "list", + [ + "object", + { + "content": "string", + "sheet_text_box_id": "string" + } + ] + ], + "title": "string", + "visuals": [ + "list", + [ + "object", + { + "bar_chart_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "bars_arrangement": "string", + "category_axis": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ], + "category_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "color_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "contribution_analysis_defaults": [ + "list", + [ + "object", + { + "contributor_dimensions": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "measure_field_id": "string" + } + ] + ], + "data_labels": [ + "list", + [ + "object", + { + "category_label_visibility": "string", + "data_label_types": [ + "list", + [ + "object", + { + "data_path_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string", + "visibility": "string" + } + ] + ], + "field_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "visibility": "string" + } + ] + ], + "maximum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "minimum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "range_ends_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ] + } + ] + ], + "label_color": "string", + "label_content": "string", + "label_font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "measure_label_visibility": "string", + "overlap": "string", + "position": "string", + "visibility": "string" + } + ] + ], + "field_wells": [ + "list", + [ + "object", + { + "bar_chart_aggregated_field_wells": [ + "list", + [ + "object", + { + "category": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "colors": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "small_multiples": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "legend": [ + "list", + [ + "object", + { + "height": "string", + "position": "string", + "title": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "visibility": "string", + "width": "string" + } + ] + ], + "orientation": "string", + "reference_lines": [ + "list", + [ + "object", + { + "data_configuration": [ + "list", + [ + "object", + { + "axis_binding": "string", + "dynamic_configuration": [ + "list", + [ + "object", + { + "calculation": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "measure_aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "static_configuration": [ + "list", + [ + "object", + { + "value": "number" + } + ] + ] + } + ] + ], + "label_configuration": [ + "list", + [ + "object", + { + "custom_label_configuration": [ + "list", + [ + "object", + { + "custom_label": "string" + } + ] + ], + "font_color": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "horizontal_position": "string", + "value_label_configuration": [ + "list", + [ + "object", + { + "format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ], + "relative_position": "string" + } + ] + ], + "vertical_position": "string" + } + ] + ], + "status": "string", + "style_configuration": [ + "list", + [ + "object", + { + "color": "string", + "pattern": "string" + } + ] + ] + } + ] + ], + "small_multiples_options": [ + "list", + [ + "object", + { + "max_visible_columns": "number", + "max_visible_rows": "number", + "panel_configuration": [ + "list", + [ + "object", + { + "background_color": "string", + "background_visibility": "string", + "border_color": "string", + "border_style": "string", + "border_thickness": "string", + "border_visibility": "string", + "gutter_spacing": "string", + "gutter_visibility": "string", + "title": [ + "list", + [ + "object", + { + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "horizontal_text_alignment": "string", + "visibility": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_configuration": [ + "list", + [ + "object", + { + "category_items_limit": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "category_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ], + "color_items_limit": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "color_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ], + "small_multiples_limit_configuration": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "small_multiples_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "tooltip": [ + "list", + [ + "object", + { + "field_base_tooltip": [ + "list", + [ + "object", + { + "aggregation_visibility": "string", + "tooltip_fields": [ + "list", + [ + "object", + { + "column_tooltip_item": [ + "list", + [ + "object", + { + "aggregation": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "label": "string", + "visibility": "string" + } + ] + ], + "field_tooltip_item": [ + "list", + [ + "object", + { + "field_id": "string", + "label": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "tooltip_title_type": "string" + } + ] + ], + "selected_tooltip_type": "string", + "tooltip_visibility": "string" + } + ] + ], + "value_axis": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ], + "value_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "visual_palette": [ + "list", + [ + "object", + { + "chart_color": "string", + "color_map": [ + "list", + [ + "object", + { + "color": "string", + "element": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string" + } + ] + ], + "time_granularity": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "column_hierarchies": [ + "list", + [ + "object", + { + "date_time_hierarchy": [ + "list", + [ + "object", + { + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "explicit_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "predefined_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "box_plot_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "box_plot_options": [ + "list", + [ + "object", + { + "all_data_points_visibility": "string", + "outlier_visibility": "string", + "style_options": [ + "list", + [ + "object", + { + "fill_style": "string" + } + ] + ] + } + ] + ], + "category_axis": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ], + "category_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "field_wells": [ + "list", + [ + "object", + { + "box_plot_aggregated_field_wells": [ + "list", + [ + "object", + { + "group_by": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "legend": [ + "list", + [ + "object", + { + "height": "string", + "position": "string", + "title": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "visibility": "string", + "width": "string" + } + ] + ], + "primary_y_axis_display_options": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ], + "primary_y_axis_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "reference_lines": [ + "list", + [ + "object", + { + "data_configuration": [ + "list", + [ + "object", + { + "axis_binding": "string", + "dynamic_configuration": [ + "list", + [ + "object", + { + "calculation": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "measure_aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "static_configuration": [ + "list", + [ + "object", + { + "value": "number" + } + ] + ] + } + ] + ], + "label_configuration": [ + "list", + [ + "object", + { + "custom_label_configuration": [ + "list", + [ + "object", + { + "custom_label": "string" + } + ] + ], + "font_color": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "horizontal_position": "string", + "value_label_configuration": [ + "list", + [ + "object", + { + "format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ], + "relative_position": "string" + } + ] + ], + "vertical_position": "string" + } + ] + ], + "status": "string", + "style_configuration": [ + "list", + [ + "object", + { + "color": "string", + "pattern": "string" + } + ] + ] + } + ] + ], + "sort_configuration": [ + "list", + [ + "object", + { + "category_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ], + "pagination_configuration": [ + "list", + [ + "object", + { + "page_number": "number", + "page_size": "number" + } + ] + ] + } + ] + ], + "tooltip": [ + "list", + [ + "object", + { + "field_base_tooltip": [ + "list", + [ + "object", + { + "aggregation_visibility": "string", + "tooltip_fields": [ + "list", + [ + "object", + { + "column_tooltip_item": [ + "list", + [ + "object", + { + "aggregation": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "label": "string", + "visibility": "string" + } + ] + ], + "field_tooltip_item": [ + "list", + [ + "object", + { + "field_id": "string", + "label": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "tooltip_title_type": "string" + } + ] + ], + "selected_tooltip_type": "string", + "tooltip_visibility": "string" + } + ] + ], + "visual_palette": [ + "list", + [ + "object", + { + "chart_color": "string", + "color_map": [ + "list", + [ + "object", + { + "color": "string", + "element": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string" + } + ] + ], + "time_granularity": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "column_hierarchies": [ + "list", + [ + "object", + { + "date_time_hierarchy": [ + "list", + [ + "object", + { + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "explicit_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "predefined_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "combo_chart_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "bar_data_labels": [ + "list", + [ + "object", + { + "category_label_visibility": "string", + "data_label_types": [ + "list", + [ + "object", + { + "data_path_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string", + "visibility": "string" + } + ] + ], + "field_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "visibility": "string" + } + ] + ], + "maximum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "minimum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "range_ends_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ] + } + ] + ], + "label_color": "string", + "label_content": "string", + "label_font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "measure_label_visibility": "string", + "overlap": "string", + "position": "string", + "visibility": "string" + } + ] + ], + "bars_arrangement": "string", + "category_axis": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ], + "category_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "color_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "field_wells": [ + "list", + [ + "object", + { + "combo_chart_aggregated_field_wells": [ + "list", + [ + "object", + { + "bar_values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "category": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "colors": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "line_values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "legend": [ + "list", + [ + "object", + { + "height": "string", + "position": "string", + "title": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "visibility": "string", + "width": "string" + } + ] + ], + "line_data_labels": [ + "list", + [ + "object", + { + "category_label_visibility": "string", + "data_label_types": [ + "list", + [ + "object", + { + "data_path_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string", + "visibility": "string" + } + ] + ], + "field_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "visibility": "string" + } + ] + ], + "maximum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "minimum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "range_ends_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ] + } + ] + ], + "label_color": "string", + "label_content": "string", + "label_font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "measure_label_visibility": "string", + "overlap": "string", + "position": "string", + "visibility": "string" + } + ] + ], + "primary_y_axis_display_options": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ], + "primary_y_axis_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "reference_lines": [ + "list", + [ + "object", + { + "data_configuration": [ + "list", + [ + "object", + { + "axis_binding": "string", + "dynamic_configuration": [ + "list", + [ + "object", + { + "calculation": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "measure_aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "static_configuration": [ + "list", + [ + "object", + { + "value": "number" + } + ] + ] + } + ] + ], + "label_configuration": [ + "list", + [ + "object", + { + "custom_label_configuration": [ + "list", + [ + "object", + { + "custom_label": "string" + } + ] + ], + "font_color": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "horizontal_position": "string", + "value_label_configuration": [ + "list", + [ + "object", + { + "format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ], + "relative_position": "string" + } + ] + ], + "vertical_position": "string" + } + ] + ], + "status": "string", + "style_configuration": [ + "list", + [ + "object", + { + "color": "string", + "pattern": "string" + } + ] + ] + } + ] + ], + "secondary_y_axis_display_options": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ], + "secondary_y_axis_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "sort_configuration": [ + "list", + [ + "object", + { + "category_items_limit": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "category_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ], + "color_items_limit": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "color_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "tooltip": [ + "list", + [ + "object", + { + "field_base_tooltip": [ + "list", + [ + "object", + { + "aggregation_visibility": "string", + "tooltip_fields": [ + "list", + [ + "object", + { + "column_tooltip_item": [ + "list", + [ + "object", + { + "aggregation": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "label": "string", + "visibility": "string" + } + ] + ], + "field_tooltip_item": [ + "list", + [ + "object", + { + "field_id": "string", + "label": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "tooltip_title_type": "string" + } + ] + ], + "selected_tooltip_type": "string", + "tooltip_visibility": "string" + } + ] + ], + "visual_palette": [ + "list", + [ + "object", + { + "chart_color": "string", + "color_map": [ + "list", + [ + "object", + { + "color": "string", + "element": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string" + } + ] + ], + "time_granularity": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "column_hierarchies": [ + "list", + [ + "object", + { + "date_time_hierarchy": [ + "list", + [ + "object", + { + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "explicit_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "predefined_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "custom_content_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "content_type": "string", + "content_url": "string", + "image_scaling": "string" + } + ] + ], + "data_set_identifier": "string", + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "empty_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "data_set_identifier": "string", + "visual_id": "string" + } + ] + ], + "filled_map_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "field_wells": [ + "list", + [ + "object", + { + "filled_map_aggregated_field_wells": [ + "list", + [ + "object", + { + "geospatial": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "legend": [ + "list", + [ + "object", + { + "height": "string", + "position": "string", + "title": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "visibility": "string", + "width": "string" + } + ] + ], + "map_style_options": [ + "list", + [ + "object", + { + "base_map_style": "string" + } + ] + ], + "sort_configuration": [ + "list", + [ + "object", + { + "category_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "tooltip": [ + "list", + [ + "object", + { + "field_base_tooltip": [ + "list", + [ + "object", + { + "aggregation_visibility": "string", + "tooltip_fields": [ + "list", + [ + "object", + { + "column_tooltip_item": [ + "list", + [ + "object", + { + "aggregation": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "label": "string", + "visibility": "string" + } + ] + ], + "field_tooltip_item": [ + "list", + [ + "object", + { + "field_id": "string", + "label": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "tooltip_title_type": "string" + } + ] + ], + "selected_tooltip_type": "string", + "tooltip_visibility": "string" + } + ] + ], + "window_options": [ + "list", + [ + "object", + { + "bounds": [ + "list", + [ + "object", + { + "east": "number", + "north": "number", + "south": "number", + "west": "number" + } + ] + ], + "map_zoom_mode": "string" + } + ] + ] + } + ] + ], + "column_hierarchies": [ + "list", + [ + "object", + { + "date_time_hierarchy": [ + "list", + [ + "object", + { + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "explicit_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "predefined_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "conditional_formatting": [ + "list", + [ + "object", + { + "conditional_formatting_options": [ + "list", + [ + "object", + { + "shape": [ + "list", + [ + "object", + { + "field_id": "string", + "format": [ + "list", + [ + "object", + { + "background_color": [ + "list", + [ + "object", + { + "gradient": [ + "list", + [ + "object", + { + "color": [ + "list", + [ + "object", + { + "stops": [ + "list", + [ + "object", + { + "color": "string", + "data_value": "number", + "gradient_offset": "number" + } + ] + ] + } + ] + ], + "expression": "string" + } + ] + ], + "solid": [ + "list", + [ + "object", + { + "color": "string", + "expression": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "funnel_chart_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "category_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "data_label_options": [ + "list", + [ + "object", + { + "category_label_visibility": "string", + "label_color": "string", + "label_font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "measure_data_label_style": "string", + "measure_label_visibility": "string", + "position": "string", + "visibility": "string" + } + ] + ], + "field_wells": [ + "list", + [ + "object", + { + "funnel_chart_aggregated_field_wells": [ + "list", + [ + "object", + { + "category": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "sort_configuration": [ + "list", + [ + "object", + { + "category_items_limit": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "category_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "tooltip": [ + "list", + [ + "object", + { + "field_base_tooltip": [ + "list", + [ + "object", + { + "aggregation_visibility": "string", + "tooltip_fields": [ + "list", + [ + "object", + { + "column_tooltip_item": [ + "list", + [ + "object", + { + "aggregation": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "label": "string", + "visibility": "string" + } + ] + ], + "field_tooltip_item": [ + "list", + [ + "object", + { + "field_id": "string", + "label": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "tooltip_title_type": "string" + } + ] + ], + "selected_tooltip_type": "string", + "tooltip_visibility": "string" + } + ] + ], + "value_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "visual_palette": [ + "list", + [ + "object", + { + "chart_color": "string", + "color_map": [ + "list", + [ + "object", + { + "color": "string", + "element": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string" + } + ] + ], + "time_granularity": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "column_hierarchies": [ + "list", + [ + "object", + { + "date_time_hierarchy": [ + "list", + [ + "object", + { + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "explicit_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "predefined_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "gauge_chart_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "data_labels": [ + "list", + [ + "object", + { + "category_label_visibility": "string", + "data_label_types": [ + "list", + [ + "object", + { + "data_path_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string", + "visibility": "string" + } + ] + ], + "field_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "visibility": "string" + } + ] + ], + "maximum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "minimum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "range_ends_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ] + } + ] + ], + "label_color": "string", + "label_content": "string", + "label_font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "measure_label_visibility": "string", + "overlap": "string", + "position": "string", + "visibility": "string" + } + ] + ], + "field_wells": [ + "list", + [ + "object", + { + "target_values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "gauge_chart_options": [ + "list", + [ + "object", + { + "arc": [ + "list", + [ + "object", + { + "arc_angle": "number", + "arc_thickness": "string" + } + ] + ], + "arc_axis": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "max": "number", + "min": "number" + } + ] + ], + "reserve_range": "number" + } + ] + ], + "comparison": [ + "list", + [ + "object", + { + "comparison_format": [ + "list", + [ + "object", + { + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ], + "comparison_method": "string" + } + ] + ], + "primary_value_display_type": "string", + "primary_value_font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "tooltip": [ + "list", + [ + "object", + { + "field_base_tooltip": [ + "list", + [ + "object", + { + "aggregation_visibility": "string", + "tooltip_fields": [ + "list", + [ + "object", + { + "column_tooltip_item": [ + "list", + [ + "object", + { + "aggregation": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "label": "string", + "visibility": "string" + } + ] + ], + "field_tooltip_item": [ + "list", + [ + "object", + { + "field_id": "string", + "label": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "tooltip_title_type": "string" + } + ] + ], + "selected_tooltip_type": "string", + "tooltip_visibility": "string" + } + ] + ], + "visual_palette": [ + "list", + [ + "object", + { + "chart_color": "string", + "color_map": [ + "list", + [ + "object", + { + "color": "string", + "element": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string" + } + ] + ], + "time_granularity": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "conditional_formatting": [ + "list", + [ + "object", + { + "conditional_formatting_options": [ + "list", + [ + "object", + { + "arc": [ + "list", + [ + "object", + { + "foreground_color": [ + "list", + [ + "object", + { + "gradient": [ + "list", + [ + "object", + { + "color": [ + "list", + [ + "object", + { + "stops": [ + "list", + [ + "object", + { + "color": "string", + "data_value": "number", + "gradient_offset": "number" + } + ] + ] + } + ] + ], + "expression": "string" + } + ] + ], + "solid": [ + "list", + [ + "object", + { + "color": "string", + "expression": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "primary_value": [ + "list", + [ + "object", + { + "icon": [ + "list", + [ + "object", + { + "custom_condition": [ + "list", + [ + "object", + { + "color": "string", + "display_configuration": [ + "list", + [ + "object", + { + "icon_display_option": "string" + } + ] + ], + "expression": "string", + "icon_options": [ + "list", + [ + "object", + { + "icon": "string", + "unicode_icon": "string" + } + ] + ] + } + ] + ], + "icon_set": [ + "list", + [ + "object", + { + "expression": "string", + "icon_set_type": "string" + } + ] + ] + } + ] + ], + "text_color": [ + "list", + [ + "object", + { + "gradient": [ + "list", + [ + "object", + { + "color": [ + "list", + [ + "object", + { + "stops": [ + "list", + [ + "object", + { + "color": "string", + "data_value": "number", + "gradient_offset": "number" + } + ] + ] + } + ] + ], + "expression": "string" + } + ] + ], + "solid": [ + "list", + [ + "object", + { + "color": "string", + "expression": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "geospatial_map_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "field_wells": [ + "list", + [ + "object", + { + "geospatial_map_aggregated_field_wells": [ + "list", + [ + "object", + { + "colors": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "geospatial": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "legend": [ + "list", + [ + "object", + { + "height": "string", + "position": "string", + "title": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "visibility": "string", + "width": "string" + } + ] + ], + "map_style_options": [ + "list", + [ + "object", + { + "base_map_style": "string" + } + ] + ], + "point_style_options": [ + "list", + [ + "object", + { + "cluster_marker_configuration": [ + "list", + [ + "object", + { + "cluster_marker": [ + "list", + [ + "object", + { + "simple_cluster_marker": [ + "list", + [ + "object", + { + "color": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "selected_point_style": "string" + } + ] + ], + "tooltip": [ + "list", + [ + "object", + { + "field_base_tooltip": [ + "list", + [ + "object", + { + "aggregation_visibility": "string", + "tooltip_fields": [ + "list", + [ + "object", + { + "column_tooltip_item": [ + "list", + [ + "object", + { + "aggregation": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "label": "string", + "visibility": "string" + } + ] + ], + "field_tooltip_item": [ + "list", + [ + "object", + { + "field_id": "string", + "label": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "tooltip_title_type": "string" + } + ] + ], + "selected_tooltip_type": "string", + "tooltip_visibility": "string" + } + ] + ], + "visual_palette": [ + "list", + [ + "object", + { + "chart_color": "string", + "color_map": [ + "list", + [ + "object", + { + "color": "string", + "element": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string" + } + ] + ], + "time_granularity": "string" + } + ] + ] + } + ] + ], + "window_options": [ + "list", + [ + "object", + { + "bounds": [ + "list", + [ + "object", + { + "east": "number", + "north": "number", + "south": "number", + "west": "number" + } + ] + ], + "map_zoom_mode": "string" + } + ] + ] + } + ] + ], + "column_hierarchies": [ + "list", + [ + "object", + { + "date_time_hierarchy": [ + "list", + [ + "object", + { + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "explicit_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "predefined_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "heat_map_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "color_scale": [ + "list", + [ + "object", + { + "color_fill_type": "string", + "colors": [ + "list", + [ + "object", + { + "color": "string", + "data_value": "number" + } + ] + ], + "null_value_color": [ + "list", + [ + "object", + { + "color": "string", + "data_value": "number" + } + ] + ] + } + ] + ], + "column_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "data_labels": [ + "list", + [ + "object", + { + "category_label_visibility": "string", + "data_label_types": [ + "list", + [ + "object", + { + "data_path_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string", + "visibility": "string" + } + ] + ], + "field_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "visibility": "string" + } + ] + ], + "maximum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "minimum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "range_ends_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ] + } + ] + ], + "label_color": "string", + "label_content": "string", + "label_font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "measure_label_visibility": "string", + "overlap": "string", + "position": "string", + "visibility": "string" + } + ] + ], + "field_wells": [ + "list", + [ + "object", + { + "heat_map_aggregated_field_wells": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "rows": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "legend": [ + "list", + [ + "object", + { + "height": "string", + "position": "string", + "title": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "visibility": "string", + "width": "string" + } + ] + ], + "row_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "sort_configuration": [ + "list", + [ + "object", + { + "heat_map_column_items_limit_configuration": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "heat_map_column_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ], + "heat_map_row_items_limit_configuration": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "heat_map_row_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "tooltip": [ + "list", + [ + "object", + { + "field_base_tooltip": [ + "list", + [ + "object", + { + "aggregation_visibility": "string", + "tooltip_fields": [ + "list", + [ + "object", + { + "column_tooltip_item": [ + "list", + [ + "object", + { + "aggregation": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "label": "string", + "visibility": "string" + } + ] + ], + "field_tooltip_item": [ + "list", + [ + "object", + { + "field_id": "string", + "label": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "tooltip_title_type": "string" + } + ] + ], + "selected_tooltip_type": "string", + "tooltip_visibility": "string" + } + ] + ] + } + ] + ], + "column_hierarchies": [ + "list", + [ + "object", + { + "date_time_hierarchy": [ + "list", + [ + "object", + { + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "explicit_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "predefined_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "histogram_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "bin_options": [ + "list", + [ + "object", + { + "bin_count": [ + "list", + [ + "object", + { + "value": "number" + } + ] + ], + "bin_width": [ + "list", + [ + "object", + { + "bin_count_limit": "number", + "value": "number" + } + ] + ], + "selected_bin_type": "string", + "start_value": "number" + } + ] + ], + "data_labels": [ + "list", + [ + "object", + { + "category_label_visibility": "string", + "data_label_types": [ + "list", + [ + "object", + { + "data_path_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string", + "visibility": "string" + } + ] + ], + "field_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "visibility": "string" + } + ] + ], + "maximum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "minimum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "range_ends_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ] + } + ] + ], + "label_color": "string", + "label_content": "string", + "label_font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "measure_label_visibility": "string", + "overlap": "string", + "position": "string", + "visibility": "string" + } + ] + ], + "field_wells": [ + "list", + [ + "object", + { + "histogram_aggregated_field_wells": [ + "list", + [ + "object", + { + "values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "tooltip": [ + "list", + [ + "object", + { + "field_base_tooltip": [ + "list", + [ + "object", + { + "aggregation_visibility": "string", + "tooltip_fields": [ + "list", + [ + "object", + { + "column_tooltip_item": [ + "list", + [ + "object", + { + "aggregation": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "label": "string", + "visibility": "string" + } + ] + ], + "field_tooltip_item": [ + "list", + [ + "object", + { + "field_id": "string", + "label": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "tooltip_title_type": "string" + } + ] + ], + "selected_tooltip_type": "string", + "tooltip_visibility": "string" + } + ] + ], + "visual_palette": [ + "list", + [ + "object", + { + "chart_color": "string", + "color_map": [ + "list", + [ + "object", + { + "color": "string", + "element": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string" + } + ] + ], + "time_granularity": "string" + } + ] + ] + } + ] + ], + "x_axis_display_options": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ], + "x_axis_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "y_axis_display_options": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "insight_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "data_set_identifier": "string", + "insight_configuration": [ + "list", + [ + "object", + { + "computation": [ + "list", + [ + "object", + { + "forecast": [ + "list", + [ + "object", + { + "computation_id": "string", + "custom_seasonality_value": "number", + "lower_boundary": "number", + "name": "string", + "periods_backward": "number", + "periods_forward": "number", + "prediction_interval": "number", + "seasonality": "string", + "time": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "upper_boundary": "number", + "value": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "growth_rate": [ + "list", + [ + "object", + { + "computation_id": "string", + "name": "string", + "period_size": "number", + "time": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "value": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "maximum_minimum": [ + "list", + [ + "object", + { + "computation_id": "string", + "name": "string", + "time": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "type": "string", + "value": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "metric_comparison": [ + "list", + [ + "object", + { + "computation_id": "string", + "from_value": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "name": "string", + "target_value": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "time": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "period_over_period": [ + "list", + [ + "object", + { + "computation_id": "string", + "name": "string", + "time": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "value": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "period_to_date": [ + "list", + [ + "object", + { + "computation_id": "string", + "name": "string", + "period_time_granularity": "string", + "time": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "value": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "top_bottom_movers": [ + "list", + [ + "object", + { + "category": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "computation_id": "string", + "mover_size": "number", + "name": "string", + "sort_order": "string", + "time": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "type": "string", + "value": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "top_bottom_ranked": [ + "list", + [ + "object", + { + "category": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "computation_id": "string", + "name": "string", + "result_size": "number", + "type": "string", + "value": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "total_aggregation": [ + "list", + [ + "object", + { + "computation_id": "string", + "name": "string", + "value": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "unique_values": [ + "list", + [ + "object", + { + "category": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "computation_id": "string", + "name": "string" + } + ] + ] + } + ] + ], + "custom_narrative": [ + "list", + [ + "object", + { + "narrative": "string" + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "kpi_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "field_wells": [ + "list", + [ + "object", + { + "target_values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "trend_groups": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "kpi_options": [ + "list", + [ + "object", + { + "comparison": [ + "list", + [ + "object", + { + "comparison_format": [ + "list", + [ + "object", + { + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ], + "comparison_method": "string" + } + ] + ], + "primary_value_display_type": "string", + "primary_value_font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "progress_bar": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "secondary_value": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "secondary_value_font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "sparkline": [ + "list", + [ + "object", + { + "color": "string", + "tooltip_visibility": "string", + "type": "string", + "visibility": "string" + } + ] + ], + "trend_arrows": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "visual_layout_options": [ + "list", + [ + "object", + { + "standard_layout": [ + "list", + [ + "object", + { + "type": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_configuration": [ + "list", + [ + "object", + { + "trend_group_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "column_hierarchies": [ + "list", + [ + "object", + { + "date_time_hierarchy": [ + "list", + [ + "object", + { + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "explicit_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "predefined_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "conditional_formatting": [ + "list", + [ + "object", + { + "conditional_formatting_options": [ + "list", + [ + "object", + { + "actual_value": [ + "list", + [ + "object", + { + "icon": [ + "list", + [ + "object", + { + "custom_condition": [ + "list", + [ + "object", + { + "color": "string", + "display_configuration": [ + "list", + [ + "object", + { + "icon_display_option": "string" + } + ] + ], + "expression": "string", + "icon_options": [ + "list", + [ + "object", + { + "icon": "string", + "unicode_icon": "string" + } + ] + ] + } + ] + ], + "icon_set": [ + "list", + [ + "object", + { + "expression": "string", + "icon_set_type": "string" + } + ] + ] + } + ] + ], + "text_color": [ + "list", + [ + "object", + { + "gradient": [ + "list", + [ + "object", + { + "color": [ + "list", + [ + "object", + { + "stops": [ + "list", + [ + "object", + { + "color": "string", + "data_value": "number", + "gradient_offset": "number" + } + ] + ] + } + ] + ], + "expression": "string" + } + ] + ], + "solid": [ + "list", + [ + "object", + { + "color": "string", + "expression": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "comparison_value": [ + "list", + [ + "object", + { + "icon": [ + "list", + [ + "object", + { + "custom_condition": [ + "list", + [ + "object", + { + "color": "string", + "display_configuration": [ + "list", + [ + "object", + { + "icon_display_option": "string" + } + ] + ], + "expression": "string", + "icon_options": [ + "list", + [ + "object", + { + "icon": "string", + "unicode_icon": "string" + } + ] + ] + } + ] + ], + "icon_set": [ + "list", + [ + "object", + { + "expression": "string", + "icon_set_type": "string" + } + ] + ] + } + ] + ], + "text_color": [ + "list", + [ + "object", + { + "gradient": [ + "list", + [ + "object", + { + "color": [ + "list", + [ + "object", + { + "stops": [ + "list", + [ + "object", + { + "color": "string", + "data_value": "number", + "gradient_offset": "number" + } + ] + ] + } + ] + ], + "expression": "string" + } + ] + ], + "solid": [ + "list", + [ + "object", + { + "color": "string", + "expression": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "primary_value": [ + "list", + [ + "object", + { + "icon": [ + "list", + [ + "object", + { + "custom_condition": [ + "list", + [ + "object", + { + "color": "string", + "display_configuration": [ + "list", + [ + "object", + { + "icon_display_option": "string" + } + ] + ], + "expression": "string", + "icon_options": [ + "list", + [ + "object", + { + "icon": "string", + "unicode_icon": "string" + } + ] + ] + } + ] + ], + "icon_set": [ + "list", + [ + "object", + { + "expression": "string", + "icon_set_type": "string" + } + ] + ] + } + ] + ], + "text_color": [ + "list", + [ + "object", + { + "gradient": [ + "list", + [ + "object", + { + "color": [ + "list", + [ + "object", + { + "stops": [ + "list", + [ + "object", + { + "color": "string", + "data_value": "number", + "gradient_offset": "number" + } + ] + ] + } + ] + ], + "expression": "string" + } + ] + ], + "solid": [ + "list", + [ + "object", + { + "color": "string", + "expression": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "progress_bar": [ + "list", + [ + "object", + { + "foreground_color": [ + "list", + [ + "object", + { + "gradient": [ + "list", + [ + "object", + { + "color": [ + "list", + [ + "object", + { + "stops": [ + "list", + [ + "object", + { + "color": "string", + "data_value": "number", + "gradient_offset": "number" + } + ] + ] + } + ] + ], + "expression": "string" + } + ] + ], + "solid": [ + "list", + [ + "object", + { + "color": "string", + "expression": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "line_chart_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "contribution_analysis_defaults": [ + "list", + [ + "object", + { + "contributor_dimensions": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "measure_field_id": "string" + } + ] + ], + "data_labels": [ + "list", + [ + "object", + { + "category_label_visibility": "string", + "data_label_types": [ + "list", + [ + "object", + { + "data_path_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string", + "visibility": "string" + } + ] + ], + "field_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "visibility": "string" + } + ] + ], + "maximum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "minimum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "range_ends_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ] + } + ] + ], + "label_color": "string", + "label_content": "string", + "label_font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "measure_label_visibility": "string", + "overlap": "string", + "position": "string", + "visibility": "string" + } + ] + ], + "default_series_settings": [ + "list", + [ + "object", + { + "axis_binding": "string", + "line_style_settings": [ + "list", + [ + "object", + { + "line_interpolation": "string", + "line_style": "string", + "line_visibility": "string", + "line_width": "string" + } + ] + ], + "marker_style_settings": [ + "list", + [ + "object", + { + "marker_color": "string", + "marker_shape": "string", + "marker_size": "string", + "marker_visibility": "string" + } + ] + ] + } + ] + ], + "field_wells": [ + "list", + [ + "object", + { + "line_chart_aggregated_field_wells": [ + "list", + [ + "object", + { + "category": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "colors": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "small_multiples": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "forecast_configurations": [ + "list", + [ + "object", + { + "forecast_properties": [ + "list", + [ + "object", + { + "lower_boundary": "number", + "periods_backward": "number", + "periods_forward": "number", + "prediction_interval": "number", + "seasonality": "number", + "upper_boundary": "number" + } + ] + ], + "scenario": [ + "list", + [ + "object", + { + "what_if_point_scenario": [ + "list", + [ + "object", + { + "date": "string", + "value": "number" + } + ] + ], + "what_if_range_scenario": [ + "list", + [ + "object", + { + "end_date": "string", + "start_date": "string", + "value": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "legend": [ + "list", + [ + "object", + { + "height": "string", + "position": "string", + "title": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "visibility": "string", + "width": "string" + } + ] + ], + "primary_y_axis_display_options": [ + "list", + [ + "object", + { + "axis_options": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ], + "missing_data_configuration": [ + "list", + [ + "object", + { + "treatment_option": "string" + } + ] + ] + } + ] + ], + "primary_y_axis_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "reference_lines": [ + "list", + [ + "object", + { + "data_configuration": [ + "list", + [ + "object", + { + "axis_binding": "string", + "dynamic_configuration": [ + "list", + [ + "object", + { + "calculation": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "measure_aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "static_configuration": [ + "list", + [ + "object", + { + "value": "number" + } + ] + ] + } + ] + ], + "label_configuration": [ + "list", + [ + "object", + { + "custom_label_configuration": [ + "list", + [ + "object", + { + "custom_label": "string" + } + ] + ], + "font_color": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "horizontal_position": "string", + "value_label_configuration": [ + "list", + [ + "object", + { + "format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ], + "relative_position": "string" + } + ] + ], + "vertical_position": "string" + } + ] + ], + "status": "string", + "style_configuration": [ + "list", + [ + "object", + { + "color": "string", + "pattern": "string" + } + ] + ] + } + ] + ], + "secondary_y_axis_display_options": [ + "list", + [ + "object", + { + "axis_options": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ], + "missing_data_configuration": [ + "list", + [ + "object", + { + "treatment_option": "string" + } + ] + ] + } + ] + ], + "secondary_y_axis_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "series": [ + "list", + [ + "object", + { + "data_field_series_item": [ + "list", + [ + "object", + { + "axis_binding": "string", + "field_id": "string", + "field_value": "string", + "settings": [ + "list", + [ + "object", + { + "line_style_settings": [ + "list", + [ + "object", + { + "line_interpolation": "string", + "line_style": "string", + "line_visibility": "string", + "line_width": "string" + } + ] + ], + "marker_style_settings": [ + "list", + [ + "object", + { + "marker_color": "string", + "marker_shape": "string", + "marker_size": "string", + "marker_visibility": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "field_series_item": [ + "list", + [ + "object", + { + "axis_binding": "string", + "field_id": "string", + "settings": [ + "list", + [ + "object", + { + "line_style_settings": [ + "list", + [ + "object", + { + "line_interpolation": "string", + "line_style": "string", + "line_visibility": "string", + "line_width": "string" + } + ] + ], + "marker_style_settings": [ + "list", + [ + "object", + { + "marker_color": "string", + "marker_shape": "string", + "marker_size": "string", + "marker_visibility": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "small_multiples_options": [ + "list", + [ + "object", + { + "max_visible_columns": "number", + "max_visible_rows": "number", + "panel_configuration": [ + "list", + [ + "object", + { + "background_color": "string", + "background_visibility": "string", + "border_color": "string", + "border_style": "string", + "border_thickness": "string", + "border_visibility": "string", + "gutter_spacing": "string", + "gutter_visibility": "string", + "title": [ + "list", + [ + "object", + { + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "horizontal_text_alignment": "string", + "visibility": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_configuration": [ + "list", + [ + "object", + { + "category_items_limit_configuration": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "category_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ], + "color_items_limit_configuration": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "small_multiples_limit_configuration": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "small_multiples_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "tooltip": [ + "list", + [ + "object", + { + "field_base_tooltip": [ + "list", + [ + "object", + { + "aggregation_visibility": "string", + "tooltip_fields": [ + "list", + [ + "object", + { + "column_tooltip_item": [ + "list", + [ + "object", + { + "aggregation": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "label": "string", + "visibility": "string" + } + ] + ], + "field_tooltip_item": [ + "list", + [ + "object", + { + "field_id": "string", + "label": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "tooltip_title_type": "string" + } + ] + ], + "selected_tooltip_type": "string", + "tooltip_visibility": "string" + } + ] + ], + "type": "string", + "visual_palette": [ + "list", + [ + "object", + { + "chart_color": "string", + "color_map": [ + "list", + [ + "object", + { + "color": "string", + "element": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string" + } + ] + ], + "time_granularity": "string" + } + ] + ] + } + ] + ], + "x_axis_display_options": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ], + "x_axis_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "column_hierarchies": [ + "list", + [ + "object", + { + "date_time_hierarchy": [ + "list", + [ + "object", + { + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "explicit_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "predefined_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "pie_chart_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "category_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "contribution_analysis_defaults": [ + "list", + [ + "object", + { + "contributor_dimensions": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "measure_field_id": "string" + } + ] + ], + "data_labels": [ + "list", + [ + "object", + { + "category_label_visibility": "string", + "data_label_types": [ + "list", + [ + "object", + { + "data_path_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string", + "visibility": "string" + } + ] + ], + "field_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "visibility": "string" + } + ] + ], + "maximum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "minimum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "range_ends_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ] + } + ] + ], + "label_color": "string", + "label_content": "string", + "label_font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "measure_label_visibility": "string", + "overlap": "string", + "position": "string", + "visibility": "string" + } + ] + ], + "donut_options": [ + "list", + [ + "object", + { + "arc_options": [ + "list", + [ + "object", + { + "arc_thickness": "string" + } + ] + ], + "donut_center_options": [ + "list", + [ + "object", + { + "label_visibility": "string" + } + ] + ] + } + ] + ], + "field_wells": [ + "list", + [ + "object", + { + "pie_chart_aggregated_field_wells": [ + "list", + [ + "object", + { + "category": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "small_multiples": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "legend": [ + "list", + [ + "object", + { + "height": "string", + "position": "string", + "title": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "visibility": "string", + "width": "string" + } + ] + ], + "small_multiples_options": [ + "list", + [ + "object", + { + "max_visible_columns": "number", + "max_visible_rows": "number", + "panel_configuration": [ + "list", + [ + "object", + { + "background_color": "string", + "background_visibility": "string", + "border_color": "string", + "border_style": "string", + "border_thickness": "string", + "border_visibility": "string", + "gutter_spacing": "string", + "gutter_visibility": "string", + "title": [ + "list", + [ + "object", + { + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "horizontal_text_alignment": "string", + "visibility": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_configuration": [ + "list", + [ + "object", + { + "category_items_limit": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "category_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ], + "small_multiples_limit_configuration": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "small_multiples_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "tooltip": [ + "list", + [ + "object", + { + "field_base_tooltip": [ + "list", + [ + "object", + { + "aggregation_visibility": "string", + "tooltip_fields": [ + "list", + [ + "object", + { + "column_tooltip_item": [ + "list", + [ + "object", + { + "aggregation": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "label": "string", + "visibility": "string" + } + ] + ], + "field_tooltip_item": [ + "list", + [ + "object", + { + "field_id": "string", + "label": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "tooltip_title_type": "string" + } + ] + ], + "selected_tooltip_type": "string", + "tooltip_visibility": "string" + } + ] + ], + "value_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "visual_palette": [ + "list", + [ + "object", + { + "chart_color": "string", + "color_map": [ + "list", + [ + "object", + { + "color": "string", + "element": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string" + } + ] + ], + "time_granularity": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "column_hierarchies": [ + "list", + [ + "object", + { + "date_time_hierarchy": [ + "list", + [ + "object", + { + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "explicit_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "predefined_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "pivot_table_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "field_options": [ + "list", + [ + "object", + { + "data_path_options": [ + "list", + [ + "object", + { + "data_path_list": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string" + } + ] + ], + "width": "string" + } + ] + ], + "selected_field_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "field_id": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "field_wells": [ + "list", + [ + "object", + { + "pivot_table_aggregated_field_wells": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "rows": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "paginated_report_options": [ + "list", + [ + "object", + { + "overflow_column_header_visibility": "string", + "vertical_overflow_visibility": "string" + } + ] + ], + "sort_configuration": [ + "list", + [ + "object", + { + "field_sort_options": [ + "list", + [ + "object", + { + "field_id": "string", + "sort_by": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "data_path": [ + "list", + [ + "object", + { + "direction": "string", + "sort_paths": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string" + } + ] + ] + } + ] + ], + "field": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "table_options": [ + "list", + [ + "object", + { + "cell_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ], + "collapsed_row_dimensions_visibility": "string", + "column_header_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ], + "column_names_visibility": "string", + "metric_placement": "string", + "row_alternate_color_options": [ + "list", + [ + "object", + { + "row_alternate_colors": [ + "list", + "string" + ], + "status": "string" + } + ] + ], + "row_field_names_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ], + "row_header_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ], + "single_metric_visibility": "string", + "toggle_buttons_visibility": "string" + } + ] + ], + "total_options": [ + "list", + [ + "object", + { + "column_subtotal_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "field_level": "string", + "field_level_options": [ + "list", + [ + "object", + { + "field_id": "string" + } + ] + ], + "metric_header_cell_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ], + "total_cell_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ], + "totals_visibility": "string", + "value_cell_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "column_total_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "metric_header_cell_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ], + "placement": "string", + "scroll_status": "string", + "total_cell_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ], + "totals_visibility": "string", + "value_cell_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "row_subtotal_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "field_level": "string", + "field_level_options": [ + "list", + [ + "object", + { + "field_id": "string" + } + ] + ], + "metric_header_cell_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ], + "total_cell_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ], + "totals_visibility": "string", + "value_cell_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "row_total_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "metric_header_cell_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ], + "placement": "string", + "scroll_status": "string", + "total_cell_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ], + "totals_visibility": "string", + "value_cell_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "conditional_formatting": [ + "list", + [ + "object", + { + "conditional_formatting_options": [ + "list", + [ + "object", + { + "cell": [ + "list", + [ + "object", + { + "field_id": "string", + "scope": [ + "list", + [ + "object", + { + "role": "string" + } + ] + ], + "text_format": [ + "list", + [ + "object", + { + "background_color": [ + "list", + [ + "object", + { + "gradient": [ + "list", + [ + "object", + { + "color": [ + "list", + [ + "object", + { + "stops": [ + "list", + [ + "object", + { + "color": "string", + "data_value": "number", + "gradient_offset": "number" + } + ] + ] + } + ] + ], + "expression": "string" + } + ] + ], + "solid": [ + "list", + [ + "object", + { + "color": "string", + "expression": "string" + } + ] + ] + } + ] + ], + "icon": [ + "list", + [ + "object", + { + "custom_condition": [ + "list", + [ + "object", + { + "color": "string", + "display_configuration": [ + "list", + [ + "object", + { + "icon_display_option": "string" + } + ] + ], + "expression": "string", + "icon_options": [ + "list", + [ + "object", + { + "icon": "string", + "unicode_icon": "string" + } + ] + ] + } + ] + ], + "icon_set": [ + "list", + [ + "object", + { + "expression": "string", + "icon_set_type": "string" + } + ] + ] + } + ] + ], + "text_color": [ + "list", + [ + "object", + { + "gradient": [ + "list", + [ + "object", + { + "color": [ + "list", + [ + "object", + { + "stops": [ + "list", + [ + "object", + { + "color": "string", + "data_value": "number", + "gradient_offset": "number" + } + ] + ] + } + ] + ], + "expression": "string" + } + ] + ], + "solid": [ + "list", + [ + "object", + { + "color": "string", + "expression": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "radar_chart_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "alternate_band_colors_visibility": "string", + "alternate_band_even_color": "string", + "alternate_band_odd_color": "string", + "base_series_settings": [ + "list", + [ + "object", + { + "area_style_settings": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ] + } + ] + ], + "category_axis": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ], + "category_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "color_axis": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ], + "color_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "field_wells": [ + "list", + [ + "object", + { + "radar_chart_aggregated_field_wells": [ + "list", + [ + "object", + { + "category": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "color": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "legend": [ + "list", + [ + "object", + { + "height": "string", + "position": "string", + "title": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "visibility": "string", + "width": "string" + } + ] + ], + "shape": "string", + "sort_configuration": [ + "list", + [ + "object", + { + "category_items_limit": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "category_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ], + "color_items_limit": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "color_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "start_angle": "number", + "visual_palette": [ + "list", + [ + "object", + { + "chart_color": "string", + "color_map": [ + "list", + [ + "object", + { + "color": "string", + "element": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string" + } + ] + ], + "time_granularity": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "column_hierarchies": [ + "list", + [ + "object", + { + "date_time_hierarchy": [ + "list", + [ + "object", + { + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "explicit_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "predefined_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "sankey_diagram_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "data_labels": [ + "list", + [ + "object", + { + "category_label_visibility": "string", + "data_label_types": [ + "list", + [ + "object", + { + "data_path_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string", + "visibility": "string" + } + ] + ], + "field_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "visibility": "string" + } + ] + ], + "maximum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "minimum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "range_ends_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ] + } + ] + ], + "label_color": "string", + "label_content": "string", + "label_font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "measure_label_visibility": "string", + "overlap": "string", + "position": "string", + "visibility": "string" + } + ] + ], + "field_wells": [ + "list", + [ + "object", + { + "sankey_diagram_aggregated_field_wells": [ + "list", + [ + "object", + { + "destination": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "source": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "weight": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "sort_configuration": [ + "list", + [ + "object", + { + "destination_items_limit": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "source_items_limit": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "weight_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "scatter_plot_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "data_labels": [ + "list", + [ + "object", + { + "category_label_visibility": "string", + "data_label_types": [ + "list", + [ + "object", + { + "data_path_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string", + "visibility": "string" + } + ] + ], + "field_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "visibility": "string" + } + ] + ], + "maximum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "minimum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "range_ends_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ] + } + ] + ], + "label_color": "string", + "label_content": "string", + "label_font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "measure_label_visibility": "string", + "overlap": "string", + "position": "string", + "visibility": "string" + } + ] + ], + "field_wells": [ + "list", + [ + "object", + { + "scatter_plot_categorically_aggregated_field_wells": [ + "list", + [ + "object", + { + "category": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "size": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "x_axis": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "y_axis": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "scatter_plot_unaggregated_field_wells": [ + "list", + [ + "object", + { + "size": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "x_axis": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "y_axis": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "legend": [ + "list", + [ + "object", + { + "height": "string", + "position": "string", + "title": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "visibility": "string", + "width": "string" + } + ] + ], + "tooltip": [ + "list", + [ + "object", + { + "field_base_tooltip": [ + "list", + [ + "object", + { + "aggregation_visibility": "string", + "tooltip_fields": [ + "list", + [ + "object", + { + "column_tooltip_item": [ + "list", + [ + "object", + { + "aggregation": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "label": "string", + "visibility": "string" + } + ] + ], + "field_tooltip_item": [ + "list", + [ + "object", + { + "field_id": "string", + "label": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "tooltip_title_type": "string" + } + ] + ], + "selected_tooltip_type": "string", + "tooltip_visibility": "string" + } + ] + ], + "visual_palette": [ + "list", + [ + "object", + { + "chart_color": "string", + "color_map": [ + "list", + [ + "object", + { + "color": "string", + "element": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string" + } + ] + ], + "time_granularity": "string" + } + ] + ] + } + ] + ], + "x_axis_display_options": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ], + "x_axis_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "y_axis_display_options": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ], + "y_axis_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "column_hierarchies": [ + "list", + [ + "object", + { + "date_time_hierarchy": [ + "list", + [ + "object", + { + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "explicit_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "predefined_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "table_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "field_options": [ + "list", + [ + "object", + { + "order": [ + "list", + "string" + ], + "selected_field_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "field_id": "string", + "url_styling": [ + "list", + [ + "object", + { + "image_configuration": [ + "list", + [ + "object", + { + "sizing_options": [ + "list", + [ + "object", + { + "table_cell_image_scaling_configuration": "string" + } + ] + ] + } + ] + ], + "link_configuration": [ + "list", + [ + "object", + { + "content": [ + "list", + [ + "object", + { + "custom_icon_content": [ + "list", + [ + "object", + { + "icon": "string" + } + ] + ], + "custom_text_content": [ + "list", + [ + "object", + { + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "value": "string" + } + ] + ] + } + ] + ], + "target": "string" + } + ] + ] + } + ] + ], + "visibility": "string", + "width": "string" + } + ] + ] + } + ] + ], + "field_wells": [ + "list", + [ + "object", + { + "table_aggregated_field_wells": [ + "list", + [ + "object", + { + "group_by": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "table_unaggregated_field_wells": [ + "list", + [ + "object", + { + "values": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "number_format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "string_format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "paginated_report_options": [ + "list", + [ + "object", + { + "overflow_column_header_visibility": "string", + "vertical_overflow_visibility": "string" + } + ] + ], + "sort_configuration": [ + "list", + [ + "object", + { + "pagination_configuration": [ + "list", + [ + "object", + { + "page_number": "number", + "page_size": "number" + } + ] + ], + "row_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "table_inline_visualizations": [ + "list", + [ + "object", + { + "data_bars": [ + "list", + [ + "object", + { + "field_id": "string", + "negative_color": "string", + "positive_color": "string" + } + ] + ] + } + ] + ], + "table_options": [ + "list", + [ + "object", + { + "cell_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ], + "header_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ], + "orientation": "string", + "row_alternate_color_options": [ + "list", + [ + "object", + { + "row_alternate_colors": [ + "list", + "string" + ], + "status": "string" + } + ] + ] + } + ] + ], + "total_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "placement": "string", + "scroll_status": "string", + "total_cell_style": [ + "list", + [ + "object", + { + "background_color": "string", + "border": [ + "list", + [ + "object", + { + "side_specific_border": [ + "list", + [ + "object", + { + "bottom": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_horizontal": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "inner_vertical": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "left": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "right": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ], + "top": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "uniform_border": [ + "list", + [ + "object", + { + "color": "string", + "style": "string", + "thickness": "number" + } + ] + ] + } + ] + ], + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "height": "number", + "horizontal_text_alignment": "string", + "text_wrap": "string", + "vertical_text_alignment": "string", + "visibility": "string" + } + ] + ], + "totals_visibility": "string" + } + ] + ] + } + ] + ], + "conditional_formatting": [ + "list", + [ + "object", + { + "conditional_formatting_options": [ + "list", + [ + "object", + { + "cell": [ + "list", + [ + "object", + { + "field_id": "string", + "text_format": [ + "list", + [ + "object", + { + "background_color": [ + "list", + [ + "object", + { + "gradient": [ + "list", + [ + "object", + { + "color": [ + "list", + [ + "object", + { + "stops": [ + "list", + [ + "object", + { + "color": "string", + "data_value": "number", + "gradient_offset": "number" + } + ] + ] + } + ] + ], + "expression": "string" + } + ] + ], + "solid": [ + "list", + [ + "object", + { + "color": "string", + "expression": "string" + } + ] + ] + } + ] + ], + "icon": [ + "list", + [ + "object", + { + "custom_condition": [ + "list", + [ + "object", + { + "color": "string", + "display_configuration": [ + "list", + [ + "object", + { + "icon_display_option": "string" + } + ] + ], + "expression": "string", + "icon_options": [ + "list", + [ + "object", + { + "icon": "string", + "unicode_icon": "string" + } + ] + ] + } + ] + ], + "icon_set": [ + "list", + [ + "object", + { + "expression": "string", + "icon_set_type": "string" + } + ] + ] + } + ] + ], + "text_color": [ + "list", + [ + "object", + { + "gradient": [ + "list", + [ + "object", + { + "color": [ + "list", + [ + "object", + { + "stops": [ + "list", + [ + "object", + { + "color": "string", + "data_value": "number", + "gradient_offset": "number" + } + ] + ] + } + ] + ], + "expression": "string" + } + ] + ], + "solid": [ + "list", + [ + "object", + { + "color": "string", + "expression": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "row": [ + "list", + [ + "object", + { + "background_color": [ + "list", + [ + "object", + { + "gradient": [ + "list", + [ + "object", + { + "color": [ + "list", + [ + "object", + { + "stops": [ + "list", + [ + "object", + { + "color": "string", + "data_value": "number", + "gradient_offset": "number" + } + ] + ] + } + ] + ], + "expression": "string" + } + ] + ], + "solid": [ + "list", + [ + "object", + { + "color": "string", + "expression": "string" + } + ] + ] + } + ] + ], + "text_color": [ + "list", + [ + "object", + { + "gradient": [ + "list", + [ + "object", + { + "color": [ + "list", + [ + "object", + { + "stops": [ + "list", + [ + "object", + { + "color": "string", + "data_value": "number", + "gradient_offset": "number" + } + ] + ] + } + ] + ], + "expression": "string" + } + ] + ], + "solid": [ + "list", + [ + "object", + { + "color": "string", + "expression": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "tree_map_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "color_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "color_scale": [ + "list", + [ + "object", + { + "color_fill_type": "string", + "colors": [ + "list", + [ + "object", + { + "color": "string", + "data_value": "number" + } + ] + ], + "null_value_color": [ + "list", + [ + "object", + { + "color": "string", + "data_value": "number" + } + ] + ] + } + ] + ], + "data_labels": [ + "list", + [ + "object", + { + "category_label_visibility": "string", + "data_label_types": [ + "list", + [ + "object", + { + "data_path_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string", + "visibility": "string" + } + ] + ], + "field_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "visibility": "string" + } + ] + ], + "maximum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "minimum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "range_ends_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ] + } + ] + ], + "label_color": "string", + "label_content": "string", + "label_font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "measure_label_visibility": "string", + "overlap": "string", + "position": "string", + "visibility": "string" + } + ] + ], + "field_wells": [ + "list", + [ + "object", + { + "tree_map_aggregated_field_wells": [ + "list", + [ + "object", + { + "colors": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "groups": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "sizes": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "group_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "legend": [ + "list", + [ + "object", + { + "height": "string", + "position": "string", + "title": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "visibility": "string", + "width": "string" + } + ] + ], + "size_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "sort_configuration": [ + "list", + [ + "object", + { + "tree_map_group_items_limit_configuration": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "tree_map_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "tooltip": [ + "list", + [ + "object", + { + "field_base_tooltip": [ + "list", + [ + "object", + { + "aggregation_visibility": "string", + "tooltip_fields": [ + "list", + [ + "object", + { + "column_tooltip_item": [ + "list", + [ + "object", + { + "aggregation": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "label": "string", + "visibility": "string" + } + ] + ], + "field_tooltip_item": [ + "list", + [ + "object", + { + "field_id": "string", + "label": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "tooltip_title_type": "string" + } + ] + ], + "selected_tooltip_type": "string", + "tooltip_visibility": "string" + } + ] + ] + } + ] + ], + "column_hierarchies": [ + "list", + [ + "object", + { + "date_time_hierarchy": [ + "list", + [ + "object", + { + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "explicit_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "predefined_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "waterfall_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "category_axis_display_options": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ], + "category_axis_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "data_labels": [ + "list", + [ + "object", + { + "category_label_visibility": "string", + "data_label_types": [ + "list", + [ + "object", + { + "data_path_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string", + "visibility": "string" + } + ] + ], + "field_label_type": [ + "list", + [ + "object", + { + "field_id": "string", + "visibility": "string" + } + ] + ], + "maximum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "minimum_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ], + "range_ends_label_type": [ + "list", + [ + "object", + { + "visibility": "string" + } + ] + ] + } + ] + ], + "label_color": "string", + "label_content": "string", + "label_font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "measure_label_visibility": "string", + "overlap": "string", + "position": "string", + "visibility": "string" + } + ] + ], + "field_wells": [ + "list", + [ + "object", + { + "waterfall_chart_aggregated_field_wells": [ + "list", + [ + "object", + { + "breakdowns": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "categories": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "values": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "legend": [ + "list", + [ + "object", + { + "height": "string", + "position": "string", + "title": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "visibility": "string", + "width": "string" + } + ] + ], + "primary_y_axis_display_options": [ + "list", + [ + "object", + { + "axis_line_visibility": "string", + "axis_offset": "string", + "data_options": [ + "list", + [ + "object", + { + "date_axis_options": [ + "list", + [ + "object", + { + "missing_date_visibility": "string" + } + ] + ], + "numeric_axis_options": [ + "list", + [ + "object", + { + "range": [ + "list", + [ + "object", + { + "data_driven": [ + "list", + [ + "object", + {} + ] + ], + "min_max": [ + "list", + [ + "object", + { + "maximum": "number", + "minimum": "number" + } + ] + ] + } + ] + ], + "scale": [ + "list", + [ + "object", + { + "linear": [ + "list", + [ + "object", + { + "step_count": "number", + "step_size": "number" + } + ] + ], + "logarithmic": [ + "list", + [ + "object", + { + "base": "number" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "grid_line_visibility": "string", + "scrollbar_options": [ + "list", + [ + "object", + { + "visibility": "string", + "visible_range": [ + "list", + [ + "object", + { + "percent_range": [ + "list", + [ + "object", + { + "from": "number", + "to": "number" + } + ] + ] + } + ] + ] + } + ] + ], + "tick_label_options": [ + "list", + [ + "object", + { + "label_options": [ + "list", + [ + "object", + { + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ], + "visibility": "string" + } + ] + ], + "rotation_angle": "number" + } + ] + ] + } + ] + ], + "primary_y_axis_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "sort_configuration": [ + "list", + [ + "object", + { + "breakdown_items_limit": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "category_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "visual_palette": [ + "list", + [ + "object", + { + "chart_color": "string", + "color_map": [ + "list", + [ + "object", + { + "color": "string", + "element": [ + "list", + [ + "object", + { + "field_id": "string", + "field_value": "string" + } + ] + ], + "time_granularity": "string" + } + ] + ] + } + ] + ], + "waterfall_chart_options": [ + "list", + [ + "object", + { + "total_bar_label": "string" + } + ] + ] + } + ] + ], + "column_hierarchies": [ + "list", + [ + "object", + { + "date_time_hierarchy": [ + "list", + [ + "object", + { + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "explicit_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "predefined_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ], + "word_cloud_visual": [ + "list", + [ + "object", + { + "actions": [ + "list", + [ + "object", + { + "action_operations": [ + "list", + [ + "object", + { + "filter_operation": [ + "list", + [ + "object", + { + "selected_fields_configuration": [ + "list", + [ + "object", + { + "selected_field_option": "string", + "selected_fields": [ + "list", + "string" + ] + } + ] + ], + "target_visuals_configuration": [ + "list", + [ + "object", + { + "same_sheet_target_visual_configuration": [ + "list", + [ + "object", + { + "target_visual_option": "string", + "target_visuals": [ + "set", + "string" + ] + } + ] + ] + } + ] + ] + } + ] + ], + "navigation_operation": [ + "list", + [ + "object", + { + "local_navigation_configuration": [ + "list", + [ + "object", + { + "target_sheet_id": "string" + } + ] + ] + } + ] + ], + "set_parameters_operation": [ + "list", + [ + "object", + { + "parameter_value_configurations": [ + "list", + [ + "object", + { + "destination_parameter_name": "string", + "value": [ + "list", + [ + "object", + { + "custom_values_configuration": [ + "list", + [ + "object", + { + "custom_values": [ + "list", + [ + "object", + { + "date_time_values": [ + "list", + "string" + ], + "decimal_values": [ + "list", + "number" + ], + "integer_values": [ + "list", + "number" + ], + "string_values": [ + "list", + "string" + ] + } + ] + ], + "include_null_value": "bool" + } + ] + ], + "select_all_value_options": "string", + "source_field": "string", + "source_parameter_name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "url_operation": [ + "list", + [ + "object", + { + "url_target": "string", + "url_template": "string" + } + ] + ] + } + ] + ], + "custom_action_id": "string", + "name": "string", + "status": "string", + "trigger": "string" + } + ] + ], + "chart_configuration": [ + "list", + [ + "object", + { + "category_label_options": [ + "list", + [ + "object", + { + "axis_label_options": [ + "list", + [ + "object", + { + "apply_to": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string" + } + ] + ], + "custom_label": "string", + "font_configuration": [ + "list", + [ + "object", + { + "font_color": "string", + "font_decoration": "string", + "font_size": [ + "list", + [ + "object", + { + "relative": "string" + } + ] + ], + "font_style": "string", + "font_weight": [ + "list", + [ + "object", + { + "name": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "sort_icon_visibility": "string", + "visibility": "string" + } + ] + ], + "field_wells": [ + "list", + [ + "object", + { + "word_cloud_aggregated_field_wells": [ + "list", + [ + "object", + { + "group_by": [ + "list", + [ + "object", + { + "categorical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "date_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "date_granularity": "string", + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "numerical_dimension_field": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "size": [ + "list", + [ + "object", + { + "calculated_measure_field": [ + "list", + [ + "object", + { + "expression": "string", + "field_id": "string" + } + ] + ], + "categorical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "date_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": "string", + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "date_time_format": "string", + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "numerical_measure_field": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "field_id": "string", + "format_configuration": [ + "list", + [ + "object", + { + "numeric_format_configuration": [ + "list", + [ + "object", + { + "currency_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string", + "symbol": "string" + } + ] + ], + "number_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "number_scale": "string", + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ], + "percentage_display_format_configuration": [ + "list", + [ + "object", + { + "decimal_places_configuration": [ + "list", + [ + "object", + { + "decimal_places": "number" + } + ] + ], + "negative_value_configuration": [ + "list", + [ + "object", + { + "display_mode": "string" + } + ] + ], + "null_value_format_configuration": [ + "list", + [ + "object", + { + "null_string": "string" + } + ] + ], + "prefix": "string", + "separator_configuration": [ + "list", + [ + "object", + { + "decimal_separator": "string", + "thousands_separator": [ + "list", + [ + "object", + { + "symbol": "string", + "visibility": "string" + } + ] + ] + } + ] + ], + "suffix": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "sort_configuration": [ + "list", + [ + "object", + { + "category_items_limit": [ + "list", + [ + "object", + { + "items_limit": "number", + "other_categories": "string" + } + ] + ], + "category_sort": [ + "list", + [ + "object", + { + "column_sort": [ + "list", + [ + "object", + { + "aggregation_function": [ + "list", + [ + "object", + { + "categorical_aggregation_function": "string", + "date_aggregation_function": "string", + "numerical_aggregation_function": [ + "list", + [ + "object", + { + "percentile_aggregation": [ + "list", + [ + "object", + { + "percentile_value": "number" + } + ] + ], + "simple_numerical_aggregation": "string" + } + ] + ] + } + ] + ], + "direction": "string", + "sort_by": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "field_sort": [ + "list", + [ + "object", + { + "direction": "string", + "field_id": "string" + } + ] + ] + } + ] + ] + } + ] + ], + "word_cloud_options": [ + "list", + [ + "object", + { + "cloud_layout": "string", + "maximum_string_length": "number", + "word_casing": "string", + "word_orientation": "string", + "word_padding": "string", + "word_scaling": "string" + } + ] + ] + } + ] + ], + "column_hierarchies": [ + "list", + [ + "object", + { + "date_time_hierarchy": [ + "list", + [ + "object", + { + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "explicit_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ], + "predefined_hierarchy": [ + "list", + [ + "object", + { + "columns": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "drill_down_filters": [ + "list", + [ + "object", + { + "category_filter": [ + "list", + [ + "object", + { + "category_values": [ + "list", + "string" + ], + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ] + } + ] + ], + "numeric_equality_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "value": "number" + } + ] + ], + "time_range_filter": [ + "list", + [ + "object", + { + "column": [ + "list", + [ + "object", + { + "column_name": "string", + "data_set_identifier": "string" + } + ] + ], + "range_maximum": "string", + "range_minimum": "string", + "time_granularity": "string" + } + ] + ] + } + ] + ], + "hierarchy_id": "string" + } + ] + ] + } + ] + ], + "subtitle": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "title": [ + "list", + [ + "object", + { + "format_text": [ + "list", + [ + "object", + { + "plain_text": "string", + "rich_text": "string" + } + ] + ], + "visibility": "string" + } + ] + ], + "visual_id": "string" + } + ] + ] + } + ] + ] + } + ] + ] + } + ] + ], + "description_kind": "plain", + "computed": true + }, + "id": { + "type": "string", + "description_kind": "plain", + "optional": true, + "computed": true + }, + "last_published_time": { + "type": "string", + "description_kind": "plain", + "computed": true + }, + "last_updated_time": { + "type": "string", + "description_kind": "plain", + "computed": true + }, + "name": { + "type": "string", + "description_kind": "plain", + "computed": true + }, + "permissions": { + "type": [ + "list", + [ + "object", + { + "actions": [ + "set", + "string" + ], + "principal": "string" + } + ] + ], + "description_kind": "plain", + "computed": true + }, + "status": { + "type": "string", + "description_kind": "plain", + "computed": true + }, + "tags": { + "type": [ + "map", + "string" + ], + "description_kind": "plain", + "optional": true, + "computed": true + }, + "theme_arn": { + "type": "string", + "description_kind": "plain", + "computed": true + } + }, + "description_kind": "plain" + } + } + } + } + } + } + \ No newline at end of file diff --git a/packages/@cdktf/provider-generator/lib/get/__tests__/generator/skipped-attributes.test.ts b/packages/@cdktf/provider-generator/lib/get/__tests__/generator/skipped-attributes.test.ts index 1db4d654c2..c67d6c6990 100644 --- a/packages/@cdktf/provider-generator/lib/get/__tests__/generator/skipped-attributes.test.ts +++ b/packages/@cdktf/provider-generator/lib/get/__tests__/generator/skipped-attributes.test.ts @@ -6,7 +6,7 @@ import * as path from "path"; import { TerraformProviderGenerator } from "../../generator/provider-generator"; import { CodeMaker } from "codemaker"; -test("skips attributes in the disallow list", async () => { +test("skips block type attributes in the disallow list", async () => { const code = new CodeMaker(); const workdir = fs.mkdtempSync( path.join(os.tmpdir(), "skip-attributes.test") @@ -37,3 +37,38 @@ test("skips attributes in the disallow list", async () => { ) ).toBe(false); }); + +test("skips attribute type attributes in the disallow list", async () => { + const code = new CodeMaker(); + const workdir = fs.mkdtempSync( + path.join(os.tmpdir(), "skip-attributes.test") + ); + const spec = JSON.parse( + fs.readFileSync( + path.join( + __dirname, + "fixtures", + "data_aws_quicksight_analysis.fixture.json" + ), + "utf-8" + ) + ); + new TerraformProviderGenerator(code, spec).generateAll(); + await code.save(workdir); + + const output = fs.readFileSync( + path.join(workdir, "providers/aws/data-aws-quicksight-analysis/index.ts"), + "utf-8" + ); + expect(output).toMatchSnapshot(`data-quicksight-analysis`); + + // There should also be no index structs + expect( + fs.existsSync( + path.join( + workdir, + "providers/aws/data-aws-quicksight-analysis/index-structs" + ) + ) + ).toBe(false); +}); diff --git a/packages/@cdktf/provider-generator/lib/get/generator/models/attribute-model.ts b/packages/@cdktf/provider-generator/lib/get/generator/models/attribute-model.ts index 3631fa306f..f970661c92 100644 --- a/packages/@cdktf/provider-generator/lib/get/generator/models/attribute-model.ts +++ b/packages/@cdktf/provider-generator/lib/get/generator/models/attribute-model.ts @@ -32,6 +32,7 @@ export interface AttributeModelOptions { getAttCall?: string; provider: boolean; required: boolean; + forcePlainGetterType?: boolean; // used for skipping attribute type attributes that use the SkippedAttributeTypeModel which returns an interpolation and has no stored type } export function escapeAttributeName(name: string) { @@ -67,6 +68,7 @@ export class AttributeModel { private _description?: string; public provider: boolean; public required: boolean; + public forcePlainGetterType?: boolean; constructor(options: AttributeModelOptions) { this.storageName = options.storageName; @@ -79,6 +81,7 @@ export class AttributeModel { this._description = options.description; this.provider = options.provider; this.required = options.required; + this.forcePlainGetterType = options.forcePlainGetterType; } public get typeDefinition() { @@ -105,6 +108,10 @@ export class AttributeModel { public get getterType(): GetterType { let getterType: GetterType = { _type: "plain" }; + if (this.forcePlainGetterType) { + return getterType; + } + if (this.isProvider) { return getterType; } diff --git a/packages/@cdktf/provider-generator/lib/get/generator/resource-parser.ts b/packages/@cdktf/provider-generator/lib/get/generator/resource-parser.ts index 0f564a1622..3e21f2b2b6 100644 --- a/packages/@cdktf/provider-generator/lib/get/generator/resource-parser.ts +++ b/packages/@cdktf/provider-generator/lib/get/generator/resource-parser.ts @@ -28,7 +28,6 @@ import { } from "./models"; import { detectAttributeLoops } from "./loop-detection"; import { shouldSkipAttribute } from "./skipped-attributes"; -import { Errors } from "@cdktf/commons"; // Can't be used in expressions like "export * as from ... " // filtered from all keywords from: https://github.com/microsoft/TypeScript/blob/503604c884bd0557c851b11b699ef98cdb65b93b/src/compiler/types.ts#L114-L197 @@ -396,28 +395,29 @@ class Parser { for (const [terraformAttributeName, att] of Object.entries( block.attributes || {} )) { + let type: AttributeTypeModel; + let forcePlainGetterType = false; if (shouldSkipAttribute(parentType.fullName(terraformAttributeName))) { - throw Errors.Internal( - `Skipping attribute ${parentType.fullName( - terraformAttributeName - )} is not implemented since it's an attribute and not a block type` + type = new SkippedAttributeTypeModel(); + forcePlainGetterType = true; + } else { + type = this.renderAttributeType( + [ + parentType, + new Scope({ + name: terraformAttributeName, + parent: parentType, + isProvider: parentType.isProvider, + isComputed: !!att.computed, + isOptional: !!att.optional, + isRequired: !!att.required, + isNestedType: isNestedTypeAttribute(att), + }), + ], + att.type || att.nested_type ); } - const type = this.renderAttributeType( - [ - parentType, - new Scope({ - name: terraformAttributeName, - parent: parentType, - isProvider: parentType.isProvider, - isComputed: !!att.computed, - isOptional: !!att.optional, - isRequired: !!att.required, - isNestedType: isNestedTypeAttribute(att), - }), - ], - att.type || att.nested_type - ); + const name = toCamelCase(terraformAttributeName); attributes.push( @@ -432,6 +432,7 @@ class Parser { type, provider: parentType.isProvider, required: !!att.required, + forcePlainGetterType, }) ); } diff --git a/packages/@cdktf/provider-generator/lib/get/generator/skipped-attributes.ts b/packages/@cdktf/provider-generator/lib/get/generator/skipped-attributes.ts index 1bbd618aea..59511bf93e 100644 --- a/packages/@cdktf/provider-generator/lib/get/generator/skipped-attributes.ts +++ b/packages/@cdktf/provider-generator/lib/get/generator/skipped-attributes.ts @@ -11,6 +11,7 @@ const SKIPPED_ATTRIBUTES: string[] = [ "aws.quicksight_template.definition", "aws.quicksight_dashboard.definition", "aws.quicksight_analysis.definition", + "aws.data_aws_quicksight_analysis.definition", "aws.wafv2_web_acl.wafv2_web_acl_rule.statement", "aws.wafv2_rule_group.wafv2_rule_group_rule.statement", ]; diff --git a/website/docs/cdktf/concepts/data-sources.mdx b/website/docs/cdktf/concepts/data-sources.mdx index 5ac9e2ea04..7334b7723b 100644 --- a/website/docs/cdktf/concepts/data-sources.mdx +++ b/website/docs/cdktf/concepts/data-sources.mdx @@ -314,3 +314,10 @@ func RemoteStateDataSourceStack(scope constructs.Construct, name string) cdktf.T ``` + +### Large Data Source Configurations + +A few individual Terraform Data Sources have very deeply nested schemas with a lot of attributes. This blows up the config classes and slows down the code generation for languages besides Typescript. To work around this we sometimes limit the depth of the config classes and use `any` on deeper level, some attributes we directly expose as `any` on the top level config class. + +- `aws` Provider: + - `data.aws_quicksight_analysis.definition` is set to `any`