diff --git a/assets/data-sets/circulation_view.json b/assets/data-sets/circulation_view.json index c176758..63f8f9e 100644 --- a/assets/data-sets/circulation_view.json +++ b/assets/data-sets/circulation_view.json @@ -1,11 +1,11 @@ { "Name": "circulation_view", "PhysicalTableMap": { - "25046cd8-e08f-41e0-8af8-5259b64499fd": { + "5037a5a4-0ba1-470b-b5ef-0eb9e4a42917": { "CustomSql": { "DataSourceArn": "", "Name": "circulation_events_view", - "SqlQuery": "select \n ce.time_stamp, \n l.short_name as libary_short_name, \n l.name as library_name,\n l.location as location,\n et.name as event_type, \n i.identifier,\n it.name as identifier_type,\n c.name as collection_name, \n ce.title, \n ce.author,\n ce.audience,\n ce.publisher,\n ce.language,\n ce.genre,\n ce.open_access,\n ce.fiction,\n ce.distributor,\n ce.medium\nfrom \n circulation_events ce,\n libraries l,\n collections c,\n circulation_event_types et,\n identifiers i,\n identifier_types it\nwhere \n ce.library_id = l.id and\n ce.event_type_id = et.id and\n ce.collection_id = c.id and\n ce.identifier_id = i.id and \n i.identifier_type_id = it.id", + "SqlQuery": "select \n ce.time_stamp, \n l.short_name as libary_short_name, \n l.name as library_name,\n l.location as location,\n et.name as event_type, \n i.identifier,\n it.name as identifier_type,\n c.name as collection_name, \n ce.title, \n ce.author,\n ce.audience,\n ce.publisher,\n ce.language,\n ce.genre,\n CASE\n WHEN ce.open_access = 1 THEN 'yes'\n WHEN ce.open_access = 0 THEN 'no'\n ELSE 'unspecified'\n END as open_access,\n CASE\n WHEN ce.fiction = 1 THEN 'fiction'\n WHEN ce.fiction = 0 THEN 'nonfiction'\n ELSE 'unspecified'\n END as fiction,\n ce.distributor,\n ce.medium\nfrom \n circulation_events ce,\n libraries l,\n collections c,\n circulation_event_types et,\n identifiers i,\n identifier_types it\nwhere \n ce.library_id = l.id and\n ce.event_type_id = et.id and\n ce.collection_id = c.id and\n ce.identifier_id = i.id and \n i.identifier_type_id = it.id", "Columns": [ { "Name": "time_stamp", @@ -65,11 +65,11 @@ }, { "Name": "open_access", - "Type": "BIT" + "Type": "STRING" }, { "Name": "fiction", - "Type": "BIT" + "Type": "STRING" }, { "Name": "distributor", @@ -84,7 +84,7 @@ } }, "LogicalTableMap": { - "6c80275e-d03d-417c-a8cd-57d93e58129b": { + "1fddc8ca-0639-4e98-a807-829990c9eb70": { "Alias": "circulation_events_view", "DataTransforms": [ { @@ -113,7 +113,7 @@ } ], "Source": { - "PhysicalTableId": "25046cd8-e08f-41e0-8af8-5259b64499fd" + "PhysicalTableId": "5037a5a4-0ba1-470b-b5ef-0eb9e4a42917" } } }, @@ -176,11 +176,11 @@ }, { "Name": "open_access", - "Type": "INTEGER" + "Type": "STRING" }, { "Name": "fiction", - "Type": "INTEGER" + "Type": "STRING" }, { "Name": "distributor", @@ -192,7 +192,7 @@ } ], "ImportMode": "SPICE", - "ConsumedSpiceCapacityInBytes": 1474571, + "ConsumedSpiceCapacityInBytes": 1619516442, "FieldFolders": {}, "RowLevelPermissionTagConfiguration": { "Status": "ENABLED", diff --git a/assets/data-sets/patron_events.json b/assets/data-sets/patron_events.json index 0580bd6..187d4f0 100644 --- a/assets/data-sets/patron_events.json +++ b/assets/data-sets/patron_events.json @@ -1,16 +1,20 @@ { "Name": "patron_events", "PhysicalTableMap": { - "50873ea6-0c3a-4989-97e1-eb740e8a3348": { + "7bff0b9c-4864-4c14-ac5c-5fb751f0f48e": { "CustomSql": { "DataSourceArn": "", "Name": "patron_events", - "SqlQuery": "select \n pe.time_stamp, \n l.short_name as library_short_name, \n l.name as library_name, \n l.location, \n l.state, \n ev.name as event_type \nfrom \n patron_events pe, \n libraries l, \n circulation_event_types ev \nwhere \n pe.library_id = l.id and \n pe.event_type_id = ev.id", + "SqlQuery": "select \n pe.time_stamp, \n pe.patron_uuid,\n l.short_name as library_short_name, \n l.name as library_name, \n l.location, \n l.state, \n ev.name as event_type \nfrom \n patron_events pe, \n libraries l, \n circulation_event_types ev \nwhere \n pe.library_id = l.id and \n pe.event_type_id = ev.id", "Columns": [ { "Name": "time_stamp", "Type": "DATETIME" }, + { + "Name": "patron_uuid", + "Type": "STRING" + }, { "Name": "library_short_name", "Type": "STRING" @@ -36,13 +40,14 @@ } }, "LogicalTableMap": { - "4dc4e51c-76b2-4595-8b3b-1759f76a05c4": { + "d42c9db8-b6e9-4774-8324-b9f9d9f58a68": { "Alias": "patron_events", "DataTransforms": [ { "ProjectOperation": { "ProjectedColumns": [ "time_stamp", + "patron_uuid", "library_short_name", "library_name", "location", @@ -53,7 +58,7 @@ } ], "Source": { - "PhysicalTableId": "50873ea6-0c3a-4989-97e1-eb740e8a3348" + "PhysicalTableId": "7bff0b9c-4864-4c14-ac5c-5fb751f0f48e" } } }, @@ -62,6 +67,10 @@ "Name": "time_stamp", "Type": "DATETIME" }, + { + "Name": "patron_uuid", + "Type": "STRING" + }, { "Name": "library_short_name", "Type": "STRING" @@ -84,7 +93,7 @@ } ], "ImportMode": "SPICE", - "ConsumedSpiceCapacityInBytes": 16444, + "ConsumedSpiceCapacityInBytes": 73990702, "FieldFolders": {}, "RowLevelPermissionTagConfiguration": { "Status": "ENABLED", diff --git a/assets/templates/library.json b/assets/templates/library.json index ba5c5ce..6a0dc8d 100644 --- a/assets/templates/library.json +++ b/assets/templates/library.json @@ -7,8 +7,8 @@ "DataSetSchema": { "ColumnSchemaList": [ { - "Name": "fiction", - "DataType": "INTEGER" + "Name": "open_access", + "DataType": "STRING" }, { "Name": "location", @@ -55,8 +55,8 @@ "DataType": "STRING" }, { - "Name": "open_access", - "DataType": "INTEGER" + "Name": "fiction", + "DataType": "STRING" }, { "Name": "collection_name", @@ -105,36 +105,50 @@ ], "Sheets": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", - "Name": "Circulation Summary", - "ParameterControls": [ - { - "TextField": { - "ParameterControlId": "76519b7c-cddd-45fa-963f-b76ac68cb196", - "Title": "Time Zone", - "SourceParameterName": "TimeZone", - "DisplayOptions": { - "TitleOptions": { - "Visibility": "VISIBLE", - "FontConfiguration": { - "FontSize": { - "Relative": "MEDIUM" - } + "SheetId": "1c24be29-6e6d-41bb-b24d-b832ae798eae", + "Name": "Start Here!", + "Visuals": [], + "TextBoxes": [ + { + "SheetTextBoxId": "b23a0eb8-3e0a-4082-89f8-4be63d1ca2dc", + "Content": "\n \n Welcome to the new Palace Project usage data dashboard using Amazon QuickSight.\n \n
\n
\n In the subsequent tabs you will find data regarding new patron signups as well as current and historical circulation within Palace. Each tab includes a detailed description at the top of the screen as to what information is found in that specific tab. You may customize the data shown in each tab by clicking the dropdown arrow in the \u201cControls\u201d area located in the top right of the screen directly below the navigation tabs (for example, some tabs allow you to change the time frame of the data being reported).\n
\n
\n The Palace Project team considers this\u00a0\n \n usage data dashboard a continual work in progress\n \n \u00a0and we would LOVE to hear your feedback. What data or graphs would you like to see? What questions are you trying to answer that you are not currently able to based on the data presented? Are there other ways existing data could be presented visually that would be easier to understand? Email us with your input at support@thepalaceproject.org.\n
\n
\n We plan to make continual improvements to the usage data dashboard, so watch for updates! And thank you for your continued support of the Palace Project.\n
" + } + ], + "Layouts": [ + { + "Configuration": { + "GridLayout": { + "Elements": [ + { + "ElementId": "b23a0eb8-3e0a-4082-89f8-4be63d1ca2dc", + "ElementType": "TEXT_BOX", + "ColumnIndex": 0, + "ColumnSpan": 24, + "RowIndex": 0, + "RowSpan": 10 + } + ], + "CanvasSizeOptions": { + "ScreenCanvasSizeOptions": { + "ResizeOption": "FIXED", + "OptimizedViewPortWidth": "1600px" } - }, - "PlaceholderOptions": { - "Visibility": "VISIBLE" } } } } ], + "ContentType": "INTERACTIVE" + }, + { + "SheetId": "f36d743f-7a14-45ac-bc1f-28401f7c238a", + "Name": "New Patrons", "FilterControls": [ { "RelativeDateTime": { - "FilterControlId": "e886bfc4-1ea7-43dc-9e5a-c6a5df10864d", - "Title": "Patron Sign Ups Time Period", - "SourceFilterId": "9f013a46-4a5e-47e7-8e83-1aeb1a67d0e0", + "FilterControlId": "d986b2b6-effe-48cf-96a7-be4840e4ebcc", + "Title": "Time Frame for Patron Data:", + "SourceFilterId": "0cb94d00-8b16-4eab-9da7-b42fcc80b1e0", "DisplayOptions": { "TitleOptions": { "Visibility": "VISIBLE", @@ -144,7 +158,7 @@ } } }, - "DateTimeFormat": "YYYY/MM/DD HH:mm:ss", + "DateTimeFormat": "MM/DD/YYYY", "InfoIconLabelOptions": { "Visibility": "HIDDEN" } @@ -152,31 +166,142 @@ } }, { - "RelativeDateTime": { - "FilterControlId": "ae6540bf-efaa-42f9-a0c4-0b2f9808f56e", - "Title": "Circulation Data Time Period", - "SourceFilterId": "512d8349-aea5-4bf4-8f34-6c909e490fc6", + "Dropdown": { + "FilterControlId": "646b9c72-ad41-46d8-99f8-1052a3e131ff", + "Title": "Select Library/Libraries:", + "SourceFilterId": "c0bc78aa-7e9c-4bcf-a22c-1960d4d25d7e", "DisplayOptions": { + "SelectAllOptions": { + "Visibility": "VISIBLE" + }, "TitleOptions": { "Visibility": "VISIBLE", "FontConfiguration": { "FontSize": { - "Relative": "MEDIUM" + "Relative": "LARGE" } } }, - "DateTimeFormat": "YYYY/MM/DD HH:mm:ss", "InfoIconLabelOptions": { "Visibility": "HIDDEN" } + }, + "Type": "MULTI_SELECT" + } + } + ], + "Visuals": [ + { + "KPIVisual": { + "VisualId": "86e702a7-fb5f-4606-9d32-63b166785fe1", + "Title": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n New Patrons\n" + } + }, + "Subtitle": { + "Visibility": "HIDDEN" + }, + "ChartConfiguration": { + "FieldWells": { + "Values": [ + { + "CategoricalMeasureField": { + "FieldId": "4dc4e51c-76b2-4595-8b3b-1759f76a05c4.event_type.0.1678472520108", + "Column": { + "DataSetIdentifier": "patron_events", + "ColumnName": "event_type" + }, + "AggregationFunction": "COUNT" + } + } + ], + "TargetValues": [], + "TrendGroups": [] + }, + "SortConfiguration": {} + }, + "Actions": [], + "ColumnHierarchies": [] + } + } + ], + "TextBoxes": [ + { + "SheetTextBoxId": "2b2b6079-c5b3-410f-abc5-b19b1e13d571", + "Content": "\n \n New Patrons\n \n
\n The following display shows new patron signups in Palace year to date. To change the time frame for the data being reported below, click the dropdown arrow in the top right of the screen above this description and adjust the \"Time Frame\" settings to the time frame of interest.\n
\n Note: Updated data for the past 24 hours is loaded each evening at/around midnight Eastern time.\n
" + } + ], + "Layouts": [ + { + "Configuration": { + "GridLayout": { + "Elements": [ + { + "ElementId": "2b2b6079-c5b3-410f-abc5-b19b1e13d571", + "ElementType": "TEXT_BOX", + "ColumnIndex": 0, + "ColumnSpan": 36, + "RowIndex": 0, + "RowSpan": 3 + }, + { + "ElementId": "86e702a7-fb5f-4606-9d32-63b166785fe1", + "ElementType": "VISUAL", + "ColumnIndex": 0, + "ColumnSpan": 5, + "RowIndex": 3, + "RowSpan": 6 + } + ], + "CanvasSizeOptions": { + "ScreenCanvasSizeOptions": { + "ResizeOption": "FIXED", + "OptimizedViewPortWidth": "1600px" + } + } } } - }, + } + ], + "SheetControlLayouts": [ + { + "Configuration": { + "GridLayout": { + "Elements": [ + { + "ElementId": "646b9c72-ad41-46d8-99f8-1052a3e131ff", + "ElementType": "FILTER_CONTROL", + "ColumnIndex": 0, + "ColumnSpan": 4, + "RowIndex": 0, + "RowSpan": 1 + }, + { + "ElementId": "d986b2b6-effe-48cf-96a7-be4840e4ebcc", + "ElementType": "FILTER_CONTROL", + "ColumnIndex": 4, + "ColumnSpan": 3, + "RowIndex": 0, + "RowSpan": 1 + } + ] + } + } + } + ], + "ContentType": "INTERACTIVE" + }, + { + "SheetId": "dcd0f6be-df96-4fb5-b5ac-597f57137eb9", + "Name": "Current Circulation", + "FilterControls": [ { "Dropdown": { - "FilterControlId": "924773a9-f66a-41d4-845e-30b27a8f3854", - "Title": "Library/Libraries", - "SourceFilterId": "c726bb42-5244-44d3-9590-40c61603e1b8", + "FilterControlId": "77b24cb9-f721-4890-a3ed-4d0c38087730", + "Title": "Select Library/Libraries:", + "SourceFilterId": "371b2da6-57c6-4094-a975-1e604677a648", "DisplayOptions": { "SelectAllOptions": { "Visibility": "VISIBLE" @@ -200,11 +325,95 @@ "Visuals": [ { "KPIVisual": { - "VisualId": "9df465dd-cd5b-4e7f-aecb-d96e25ee8bf2", + "VisualId": "154e8c5c-f205-4dd7-8908-d868caa509cb", + "Title": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n Total Holds\n" + } + }, + "Subtitle": { + "Visibility": "HIDDEN" + }, + "ChartConfiguration": { + "FieldWells": { + "Values": [ + { + "CategoricalMeasureField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678471339042", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "title" + }, + "AggregationFunction": "COUNT" + } + } + ], + "TargetValues": [], + "TrendGroups": [] + }, + "SortConfiguration": {}, + "KPIOptions": { + "PrimaryValueFontConfiguration": { + "FontSize": { + "Relative": "LARGE" + } + } + } + }, + "Actions": [], + "ColumnHierarchies": [] + } + }, + { + "KPIVisual": { + "VisualId": "1ea60774-b6eb-4915-91a0-83e2f1f78300", + "Title": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n Total Checkouts\n" + } + }, + "Subtitle": { + "Visibility": "HIDDEN" + }, + "ChartConfiguration": { + "FieldWells": { + "Values": [ + { + "CategoricalMeasureField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678471290909", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "title" + }, + "AggregationFunction": "COUNT" + } + } + ], + "TargetValues": [], + "TrendGroups": [] + }, + "SortConfiguration": {}, + "KPIOptions": { + "PrimaryValueFontConfiguration": { + "FontSize": { + "Relative": "LARGE" + } + } + } + }, + "Actions": [], + "ColumnHierarchies": [] + } + }, + { + "KPIVisual": { + "VisualId": "ec0b648c-8c9b-476e-b55f-015ca8c7d2e2", "Title": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n Open Access Check Outs\n" + "RichText": "\n Open Access Checkouts\n" } }, "Subtitle": { @@ -261,11 +470,11 @@ }, { "KPIVisual": { - "VisualId": "007a32cd-9bea-4cf3-ac2b-20b1aff82bf4", + "VisualId": "a309348a-86d3-49ee-81c8-ff6096bd0076", "Title": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n Audio Holds Placed\n" + "RichText": "\n Audiobook Holds\n" } }, "Subtitle": { @@ -303,11 +512,11 @@ }, { "KPIVisual": { - "VisualId": "744313ed-de25-4af0-b139-83daf2b82c5b", + "VisualId": "71bffd3a-328f-448b-8b61-2e2bc615b094", "Title": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n Book Holds Placed\n" + "RichText": "\n Ebook Holds\n" } }, "Subtitle": { @@ -345,7 +554,7 @@ }, { "InsightVisual": { - "VisualId": "c8f84091-fe92-44e1-81f7-7961cd2b83ea", + "VisualId": "c20370b9-3945-4ee8-ba6c-bb6183f85c0f", "Title": { "Visibility": "HIDDEN", "FormatText": { @@ -359,224 +568,74 @@ "Computations": [ { "TopBottomRanked": { - "ComputationId": "4176ca79-d58f-4f4c-88a7-6a3efc6948a6", + "ComputationId": "791516fa-f497-4e3e-9082-78586d02f62e", "Name": "Top", "Category": { "CategoricalDimensionField": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.collection_name.3.1677620802156", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.title.1.1677085004970", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "collection_name" + "ColumnName": "title" } } }, "Value": { "CategoricalMeasureField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.title.2.1677082423954", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.2.1677085013847", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "title" + "ColumnName": "event_type" }, "AggregationFunction": "COUNT" } }, - "ResultSize": 2, + "ResultSize": 10, "Type": "TOP" } } ], "CustomNarrative": { - "Narrative": "\n Top\u00a0\u00a0\n \n \n Top.itemsCount\n \n \u00a0\n \n Open Acces providers\n \u00a0of\u00a0\n Top.metricField.name\n s are:\n s is:\n
\n \n \n \n
\n
" + "Narrative": "\n \n Top Circulating Audiobooks\n \n
\n
\n Top\u00a0\n \n \n Top.itemsCount\n \n \u00a0\n \n \n Top.categoryField.name\n \n s by checkout\u00a0\n \n are:\n \n \u00a0is:\n
\n \n \n \n
\n
" } }, - "Actions": [], - "DataSetIdentifier": "circulation_view" - } - }, - { - "InsightVisual": { - "VisualId": "e62cf0c7-5811-46fb-a67f-50302906f3de", - "Title": { - "Visibility": "HIDDEN", - "FormatText": { - "PlainText": "Insight" - } - }, - "Subtitle": { - "Visibility": "HIDDEN" - }, - "InsightConfiguration": { - "Computations": [ - { - "TopBottomRanked": { - "ComputationId": "9c461da9-e1ec-4f40-be45-680554158cf4", - "Name": "Top", - "Category": { - "CategoricalDimensionField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.title.1.1677085004970", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "title" - } - } - }, - "Value": { - "CategoricalMeasureField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.2.1677085013847", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" - }, - "AggregationFunction": "COUNT" - } - }, - "ResultSize": 10, - "Type": "TOP" - } - } - ], - "CustomNarrative": { - "Narrative": "\n Top\u00a0\n \n Top.itemsCount\n \u00a0\n \n Top.categoryField.name\n s by check out\u00a0\u00a0\n are:\n \u00a0is:\n
\n \n \n \n
\n
" - } - }, - "Actions": [ - { - "CustomActionId": "bf3160d4-edf4-4572-9b9e-ae27bed2424f", - "Name": "Action 1", - "Status": "ENABLED", - "Trigger": "DATA_POINT_CLICK", - "ActionOperations": [ - { - "FilterOperation": { - "SelectedFieldsConfiguration": { - "SelectedFieldOptions": "ALL_FIELDS" - }, - "TargetVisualsConfiguration": { - "SameSheetTargetVisualConfiguration": { - "TargetVisualOptions": "ALL_VISUALS" - } - } - } - } - ] - } - ], - "DataSetIdentifier": "circulation_view" - } - }, - { - "InsightVisual": { - "VisualId": "aad5b850-72ae-4070-97e0-41e707cb2578", - "Title": { - "Visibility": "HIDDEN", - "FormatText": { - "PlainText": "Insight" - } - }, - "Subtitle": { - "Visibility": "HIDDEN" - }, - "InsightConfiguration": { - "Computations": [ - { - "TopBottomRanked": { - "ComputationId": "b4d9a501-cab4-4e29-9c15-61645dcb1a07", - "Name": "Top", - "Category": { - "CategoricalDimensionField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.distributor.3.1677082498120", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "distributor" - } - } - }, - "Value": { - "CategoricalMeasureField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.title.2.1677082423954", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "title" - }, - "AggregationFunction": "COUNT" - } - }, - "ResultSize": 2, - "Type": "TOP" - } - } - ], - "CustomNarrative": { - "Narrative": "\n Top\u00a0\u00a0\n \n \n Top.itemsCount\n \n \u00a0\n \n Ebook providers\n \u00a0of\u00a0\n Top.metricField.name\n s are:\n s is:\n
\n \n \n \n
\n
" - } - }, - "Actions": [], - "DataSetIdentifier": "circulation_view" - } - }, - { - "InsightVisual": { - "VisualId": "1aff8e05-147d-4738-9e8f-38dece666b5a", - "Title": { - "Visibility": "HIDDEN", - "FormatText": { - "PlainText": "Insight" - } - }, - "Subtitle": { - "Visibility": "HIDDEN" - }, - "InsightConfiguration": { - "Computations": [ - { - "TopBottomRanked": { - "ComputationId": "7d5af4b3-f5df-426a-a29c-056174e067a8", - "Name": "Top", - "Category": { - "CategoricalDimensionField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.distributor.3.1677082498120", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "distributor" - } - } - }, - "Value": { - "CategoricalMeasureField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.title.2.1677082423954", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "title" - }, - "AggregationFunction": "COUNT" - } - }, - "ResultSize": 2, - "Type": "TOP" - } - } - ], - "CustomNarrative": { - "Narrative": "\n Top\u00a0\u00a0\n \n \n Top.itemsCount\n \n \u00a0\n \n Audiobook providers\u00a0\n by\n \u00a0\n \u00a0\n Top.metricField.name\n s are:\n s is:\n
\n \n \n \n
\n
" - } - }, - "Actions": [], + "Actions": [ + { + "CustomActionId": "621ed3db-46d2-4dc7-8f7d-d891fd22e525", + "Name": "Action 1", + "Status": "ENABLED", + "Trigger": "DATA_POINT_CLICK", + "ActionOperations": [ + { + "FilterOperation": { + "SelectedFieldsConfiguration": { + "SelectedFieldOptions": "ALL_FIELDS" + }, + "TargetVisualsConfiguration": { + "SameSheetTargetVisualConfiguration": { + "TargetVisualOptions": "ALL_VISUALS" + } + } + } + } + ] + } + ], "DataSetIdentifier": "circulation_view" } }, { "PivotTableVisual": { - "VisualId": "0eddfeb4-9130-4845-9ef8-8e38a9dc5154", + "VisualId": "9613d5c1-2456-4b86-8112-99be29d9df81", "Title": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n Check Outs by Audience\n" + "RichText": "\n \n Checkouts By Audience\n \n" } }, "Subtitle": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n By License Type\n" + "RichText": "\n By License Type\n
\n \n *audience metadata value of title not of user\n \n
" } }, "ChartConfiguration": { @@ -652,10 +711,9 @@ "FontColor": "#000000" }, "Border": { - "SideSpecificBorder": { - "InnerVertical": { - "Style": "SOLID" - } + "UniformBorder": { + "Thickness": 1, + "Style": "SOLID" } } }, @@ -666,7 +724,7 @@ } }, "BackgroundColor": "#FFFFFF", - "Height": 26, + "Height": 25, "Border": { "SideSpecificBorder": { "InnerVertical": { @@ -711,7 +769,7 @@ }, { "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.1.1676497163910", - "CustomLabel": "Check Outs", + "CustomLabel": "Checkouts", "Visibility": "VISIBLE" } ], @@ -747,11 +805,11 @@ }, { "KPIVisual": { - "VisualId": "0355e91f-bd1f-4f78-a5c7-b817444f849a", + "VisualId": "49142318-25be-4aa0-bdc9-d107d9f40921", "Title": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n Licensed Check Outs\n" + "RichText": "\n Licensed Checkouts\n" } }, "Subtitle": { @@ -787,19 +845,82 @@ "ColumnHierarchies": [] } }, + { + "KPIVisual": { + "VisualId": "5cd25cfa-4b83-4a42-b814-913bda3210fc", + "Title": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n Audiobook Checkouts\n" + } + }, + "Subtitle": { + "Visibility": "HIDDEN" + }, + "ChartConfiguration": { + "FieldWells": { + "Values": [ + { + "CategoricalMeasureField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678471301298", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "title" + }, + "AggregationFunction": "COUNT" + } + } + ], + "TargetValues": [], + "TrendGroups": [] + }, + "SortConfiguration": {}, + "KPIOptions": { + "PrimaryValueFontConfiguration": { + "FontSize": { + "Relative": "LARGE" + } + } + } + }, + "Actions": [ + { + "CustomActionId": "8242b3a0-1510-4273-a2f9-fd858616b700", + "Name": "Action 1", + "Status": "ENABLED", + "Trigger": "DATA_POINT_CLICK", + "ActionOperations": [ + { + "FilterOperation": { + "SelectedFieldsConfiguration": { + "SelectedFieldOptions": "ALL_FIELDS" + }, + "TargetVisualsConfiguration": { + "SameSheetTargetVisualConfiguration": { + "TargetVisualOptions": "ALL_VISUALS" + } + } + } + } + ] + } + ], + "ColumnHierarchies": [] + } + }, { "BarChartVisual": { - "VisualId": "bb3925f8-38b1-4ca9-bc10-a2e37923c77a", + "VisualId": "b45d64ae-736b-4184-a03c-ebd232ad307d", "Title": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n Check Outs Over Time\n" + "RichText": "\n \n Circulation By Distributor\n \n" } }, "Subtitle": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "License Type" + "RichText": "\n By Format\n" } }, "ChartConfiguration": { @@ -807,35 +928,23 @@ "BarChartAggregatedFieldWells": { "Category": [ { - "DateDimensionField": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676920506247", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "LocalTime" - }, - "HierarchyId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676920506247" - } - } - ], - "Values": [ - { - "CategoricalMeasureField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.2.1676920531071", + "CategoricalDimensionField": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.distributor.0.1676495893411", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" - }, - "AggregationFunction": "COUNT" + "ColumnName": "distributor" + } } } ], + "Values": [], "Colors": [ { "CategoricalDimensionField": { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677080629165", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676498382311", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "License" + "ColumnName": "medium" } } } @@ -846,22 +955,14 @@ "CategorySort": [ { "FieldSort": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676920506247", - "Direction": "ASC" + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.distributor.0.1676495893411", + "Direction": "DESC" } } ], "CategoryItemsLimit": { "OtherCategories": "INCLUDE" }, - "ColorSort": [ - { - "FieldSort": { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677080629165", - "Direction": "ASC" - } - } - ], "ColorItemsLimit": { "OtherCategories": "INCLUDE" }, @@ -878,41 +979,37 @@ } }, "CategoryLabelOptions": { - "Visibility": "HIDDEN", - "SortIconVisibility": "HIDDEN" - }, - "ValueAxis": { - "TickLabelOptions": { - "LabelOptions": { - "Visibility": "HIDDEN" - } - }, - "GridLineVisibility": "HIDDEN" - }, - "ValueLabelOptions": { - "Visibility": "HIDDEN", "SortIconVisibility": "HIDDEN", "AxisLabelOptions": [ { - "CustomLabel": "Check Outs", + "CustomLabel": "Distributor", "ApplyTo": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.2.1676920531071", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.distributor.0.1676495893411", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" + "ColumnName": "distributor" } } } ] }, + "ValueAxis": { + "GridLineVisibility": "HIDDEN", + "AxisOffset": "41px" + }, "Legend": { - "Position": "BOTTOM" + "Visibility": "VISIBLE", + "Title": { + "Visibility": "HIDDEN" + }, + "Position": "BOTTOM", + "Width": "228px" }, "DataLabels": { - "Visibility": "VISIBLE", + "Visibility": "HIDDEN", "LabelFontConfiguration": { "FontSize": { - "Relative": "EXTRA_LARGE" + "Relative": "LARGE" } }, "Overlap": "DISABLE_OVERLAP" @@ -926,20 +1023,13 @@ "TooltipFields": [ { "FieldTooltipItem": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676920506247", - "Visibility": "VISIBLE" - } - }, - { - "FieldTooltipItem": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.2.1676920531071", - "Label": "Check Outs", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.distributor.0.1676495893411", "Visibility": "VISIBLE" } }, { "FieldTooltipItem": { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677080629165", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676498382311", "Visibility": "VISIBLE" } } @@ -948,22 +1038,16 @@ } }, "Actions": [], - "ColumnHierarchies": [ - { - "DateTimeHierarchy": { - "HierarchyId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676920506247" - } - } - ] + "ColumnHierarchies": [] } }, { "KPIVisual": { - "VisualId": "c5e5aa76-1381-453f-9b17-4e25c0b71bba", + "VisualId": "482c8013-427e-4e66-857b-85cd1250f551", "Title": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n Audio Check Outs\n" + "RichText": "\n Ebook Checkouts\n" } }, "Subtitle": { @@ -974,7 +1058,7 @@ "Values": [ { "CategoricalMeasureField": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678471301298", + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678471290909", "Column": { "DataSetIdentifier": "circulation_view", "ColumnName": "title" @@ -995,178 +1079,48 @@ } } }, - "Actions": [ - { - "CustomActionId": "a856a5d4-eed4-423a-a81e-951cdd70ccb6", - "Name": "Action 1", - "Status": "ENABLED", - "Trigger": "DATA_POINT_CLICK", - "ActionOperations": [ - { - "FilterOperation": { - "SelectedFieldsConfiguration": { - "SelectedFieldOptions": "ALL_FIELDS" - }, - "TargetVisualsConfiguration": { - "SameSheetTargetVisualConfiguration": { - "TargetVisualOptions": "ALL_VISUALS" - } - } - } - } - ] - } - ], + "Actions": [], "ColumnHierarchies": [] } }, { - "BarChartVisual": { - "VisualId": "edb8bd31-faf9-4ce5-b92a-9b46b3ef8b4b", + "PivotTableVisual": { + "VisualId": "501264f7-eb80-40b4-b6c0-d864bbe10764", "Title": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n Circulation By Provider\n" + "RichText": "\n \n Checkouts By Audience\n \n" } }, "Subtitle": { - "Visibility": "HIDDEN" + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n By Format\n
\n *audience metadata value of title not of user\n
" + } }, "ChartConfiguration": { "FieldWells": { - "BarChartAggregatedFieldWells": { - "Category": [ + "PivotTableAggregatedFieldWells": { + "Rows": [ { "CategoricalDimensionField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.distributor.0.1676495893411", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.audience.0.1676497159220", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "distributor" + "ColumnName": "audience" + }, + "FormatConfiguration": { + "NullValueFormatConfiguration": { + "NullString": "Unknown" + } } } } ], - "Values": [], - "Colors": [ - { - "CategoricalDimensionField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676498382311", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "medium" - } - } - } - ] - } - }, - "SortConfiguration": { - "CategorySort": [ - { - "FieldSort": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.distributor.0.1676495893411", - "Direction": "DESC" - } - } - ], - "CategoryItemsLimit": { - "OtherCategories": "INCLUDE" - }, - "ColorSort": [ - { - "FieldSort": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676498382311", - "Direction": "DESC" - } - } - ], - "ColorItemsLimit": { - "OtherCategories": "INCLUDE" - }, - "SmallMultiplesLimitConfiguration": { - "OtherCategories": "INCLUDE" - } - }, - "Orientation": "HORIZONTAL", - "BarsArrangement": "STACKED", - "CategoryAxis": { - "AxisLineVisibility": "HIDDEN", - "ScrollbarOptions": { - "Visibility": "HIDDEN", - "VisibleRange": { - "PercentRange": { - "From": 0.0, - "To": 100.0 - } - } - } - }, - "CategoryLabelOptions": { - "SortIconVisibility": "HIDDEN" - }, - "ValueAxis": { - "GridLineVisibility": "HIDDEN" - }, - "Legend": { - "Visibility": "VISIBLE", - "Title": { - "Visibility": "HIDDEN" - }, - "Position": "BOTTOM", - "Width": "228px" - }, - "DataLabels": { - "Visibility": "VISIBLE", - "LabelFontConfiguration": { - "FontSize": { - "Relative": "LARGE" - } - }, - "Overlap": "DISABLE_OVERLAP" - }, - "Tooltip": { - "TooltipVisibility": "VISIBLE", - "SelectedTooltipType": "DETAILED", - "FieldBasedTooltip": { - "AggregationVisibility": "HIDDEN", - "TooltipTitleType": "PRIMARY_VALUE", - "TooltipFields": [ - { - "FieldTooltipItem": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.distributor.0.1676495893411", - "Visibility": "VISIBLE" - } - }, - { - "FieldTooltipItem": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676498382311", - "Visibility": "VISIBLE" - } - } - ] - } - } - }, - "Actions": [], - "ColumnHierarchies": [] - } - }, - { - "BarChartVisual": { - "VisualId": "76f3c4ec-e5be-4118-a6c8-5fc08ba5ae46", - "Title": { - "Visibility": "HIDDEN" - }, - "Subtitle": { - "Visibility": "HIDDEN" - }, - "ChartConfiguration": { - "FieldWells": { - "BarChartAggregatedFieldWells": { - "Category": [ + "Columns": [ { "CategoricalDimensionField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.0.1676496632463", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.2.1676657378146", "Column": { "DataSetIdentifier": "circulation_view", "ColumnName": "medium" @@ -1177,7 +1131,7 @@ "Values": [ { "CategoricalMeasureField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.1.1676496650328", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.1.1676497163910", "Column": { "DataSetIdentifier": "circulation_view", "ColumnName": "event_type" @@ -1185,266 +1139,40 @@ "AggregationFunction": "COUNT" } } - ], - "Colors": [] + ] } }, "SortConfiguration": { - "CategorySort": [ - { - "FieldSort": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.1.1676496650328", - "Direction": "DESC" + "FieldSortOptions": [] + }, + "TableOptions": { + "ColumnNamesVisibility": "HIDDEN", + "ColumnHeaderStyle": { + "FontConfiguration": { + "FontSize": { + "Relative": "MEDIUM" + }, + "FontColor": "#2185D9" + }, + "TextWrap": "WRAP", + "HorizontalTextAlignment": "CENTER", + "Height": 25, + "Border": { + "UniformBorder": { + "Style": "NONE" } } - ], - "CategoryItemsLimit": { - "OtherCategories": "INCLUDE" - }, - "ColorItemsLimit": { - "OtherCategories": "INCLUDE" }, - "SmallMultiplesLimitConfiguration": { - "OtherCategories": "INCLUDE" - } - }, - "Orientation": "VERTICAL", - "BarsArrangement": "CLUSTERED", - "CategoryAxis": { - "ScrollbarOptions": { - "VisibleRange": { - "PercentRange": { - "From": 0.0, - "To": 95.2991452991453 - } - } - } - }, - "CategoryLabelOptions": { - "SortIconVisibility": "HIDDEN", - "AxisLabelOptions": [ - { - "CustomLabel": "format", - "ApplyTo": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.0.1676496632463", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "medium" - } - } - } - ] - }, - "ValueLabelOptions": { - "AxisLabelOptions": [ - { - "CustomLabel": "Chec Outs", - "ApplyTo": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.1.1676496650328", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" - } - } - } - ] - }, - "Legend": { - "Visibility": "HIDDEN", - "Title": { - "Visibility": "HIDDEN" - } - }, - "DataLabels": { - "Visibility": "VISIBLE", - "MeasureLabelVisibility": "VISIBLE", - "LabelFontConfiguration": { - "FontSize": { - "Relative": "LARGE" - } - }, - "Overlap": "DISABLE_OVERLAP" - }, - "Tooltip": { - "TooltipVisibility": "VISIBLE", - "SelectedTooltipType": "DETAILED", - "FieldBasedTooltip": { - "AggregationVisibility": "HIDDEN", - "TooltipTitleType": "PRIMARY_VALUE", - "TooltipFields": [ - { - "FieldTooltipItem": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.0.1676496632463", - "Visibility": "VISIBLE" - } - }, - { - "FieldTooltipItem": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.1.1676496650328", - "Visibility": "VISIBLE" - } - } - ] - } - } - }, - "Actions": [ - { - "CustomActionId": "4a1d188c-61e8-4e79-b6ee-a8e3945ad7d1", - "Name": "Filter to library", - "Status": "ENABLED", - "Trigger": "DATA_POINT_CLICK", - "ActionOperations": [ - { - "FilterOperation": { - "SelectedFieldsConfiguration": { - "SelectedFieldOptions": "ALL_FIELDS" - }, - "TargetVisualsConfiguration": { - "SameSheetTargetVisualConfiguration": { - "TargetVisualOptions": "ALL_VISUALS" - } - } - } - } - ] - } - ], - "ColumnHierarchies": [] - } - }, - { - "KPIVisual": { - "VisualId": "66b253e5-dc34-4b34-956b-bbc9248ba115", - "Title": { - "Visibility": "VISIBLE", - "FormatText": { - "RichText": "\n Book Check Outs\n" - } - }, - "Subtitle": { - "Visibility": "HIDDEN" - }, - "ChartConfiguration": { - "FieldWells": { - "Values": [ - { - "CategoricalMeasureField": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678471290909", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "title" - }, - "AggregationFunction": "COUNT" - } - } - ], - "TargetValues": [], - "TrendGroups": [] - }, - "SortConfiguration": {}, - "KPIOptions": { - "PrimaryValueFontConfiguration": { - "FontSize": { - "Relative": "LARGE" - } - } - } - }, - "Actions": [], - "ColumnHierarchies": [] - } - }, - { - "PivotTableVisual": { - "VisualId": "4d07fe1e-66d6-475b-9c07-052fbc224553", - "Title": { - "Visibility": "VISIBLE", - "FormatText": { - "RichText": "\n Check Outs by Audience\n" - } - }, - "Subtitle": { - "Visibility": "VISIBLE", - "FormatText": { - "RichText": "\n By Format\n" - } - }, - "ChartConfiguration": { - "FieldWells": { - "PivotTableAggregatedFieldWells": { - "Rows": [ - { - "CategoricalDimensionField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.audience.0.1676497159220", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "audience" - }, - "FormatConfiguration": { - "NullValueFormatConfiguration": { - "NullString": "Unknown" - } - } - } - } - ], - "Columns": [ - { - "CategoricalDimensionField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.2.1676657378146", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "medium" - } - } - } - ], - "Values": [ - { - "CategoricalMeasureField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.1.1676497163910", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" - }, - "AggregationFunction": "COUNT" - } - } - ] - } - }, - "SortConfiguration": { - "FieldSortOptions": [] - }, - "TableOptions": { - "ColumnNamesVisibility": "HIDDEN", - "ColumnHeaderStyle": { - "FontConfiguration": { - "FontSize": { - "Relative": "MEDIUM" - }, - "FontColor": "#2185D9" - }, - "TextWrap": "WRAP", - "HorizontalTextAlignment": "CENTER", - "Height": 25, - "Border": { - "UniformBorder": { - "Style": "NONE" - } - } - }, - "RowHeaderStyle": { - "FontConfiguration": { - "FontSize": { - "Relative": "SMALL" - }, - "FontColor": "#000000" - }, - "Border": { - "UniformBorder": { - "Style": "NONE" + "RowHeaderStyle": { + "FontConfiguration": { + "FontSize": { + "Relative": "SMALL" + }, + "FontColor": "#000000" + }, + "Border": { + "UniformBorder": { + "Style": "SOLID" } } }, @@ -1501,7 +1229,7 @@ }, { "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.1.1676497163910", - "CustomLabel": "Check Outs", + "CustomLabel": "Checkouts", "Visibility": "VISIBLE" } ], @@ -1536,23 +1264,23 @@ } }, { - "BarChartVisual": { - "VisualId": "a2ea45ca-199c-451a-a16e-7c5ae0bd94ed", + "LineChartVisual": { + "VisualId": "51e58b5c-4ec1-44bf-a182-10ddeb84ebaf", "Title": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n Check Outs Over Time\n" + "RichText": "\n Checkouts Over Time\n" } }, "Subtitle": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "Format" + "RichText": "By Format" } }, "ChartConfiguration": { "FieldWells": { - "BarChartAggregatedFieldWells": { + "LineChartAggregatedFieldWells": { "Category": [ { "DateDimensionField": { @@ -1584,6 +1312,11 @@ "Column": { "DataSetIdentifier": "circulation_view", "ColumnName": "medium" + }, + "FormatConfiguration": { + "NullValueFormatConfiguration": { + "NullString": "null" + } } } } @@ -1595,41 +1328,46 @@ { "FieldSort": { "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676920506247", - "Direction": "ASC" + "Direction": "DESC" } } ], - "CategoryItemsLimit": { + "CategoryItemsLimitConfiguration": { "OtherCategories": "INCLUDE" }, - "ColorItemsLimit": { + "ColorItemsLimitConfiguration": { "OtherCategories": "INCLUDE" }, "SmallMultiplesLimitConfiguration": { "OtherCategories": "INCLUDE" } }, - "Orientation": "VERTICAL", - "BarsArrangement": "CLUSTERED", - "CategoryAxis": { - "AxisLineVisibility": "HIDDEN", - "ScrollbarOptions": { - "Visibility": "HIDDEN" - } - }, - "CategoryLabelOptions": { - "Visibility": "HIDDEN", - "SortIconVisibility": "HIDDEN" - }, - "ValueAxis": { - "TickLabelOptions": { - "LabelOptions": { - "Visibility": "HIDDEN" + "Type": "LINE", + "XAxisLabelOptions": { + "AxisLabelOptions": [ + { + "CustomLabel": "Date", + "ApplyTo": { + "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676920506247", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "LocalTime" + } + } } - }, - "GridLineVisibility": "HIDDEN" + ] + }, + "PrimaryYAxisDisplayOptions": { + "AxisOptions": { + "TickLabelOptions": { + "LabelOptions": { + "Visibility": "HIDDEN" + } + }, + "GridLineVisibility": "HIDDEN" + } }, - "ValueLabelOptions": { + "PrimaryYAxisLabelOptions": { "Visibility": "HIDDEN", "SortIconVisibility": "HIDDEN", "AxisLabelOptions": [ @@ -1649,7 +1387,7 @@ "Position": "BOTTOM" }, "DataLabels": { - "Visibility": "VISIBLE", + "Visibility": "HIDDEN", "LabelFontConfiguration": { "FontSize": { "Relative": "EXTRA_LARGE" @@ -1673,13 +1411,14 @@ { "FieldTooltipItem": { "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676920520291", + "Label": "Format", "Visibility": "VISIBLE" } }, { "FieldTooltipItem": { "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.2.1676920531071", - "Label": "Check Outs", + "Label": "Checkouts", "Visibility": "VISIBLE" } } @@ -1698,188 +1437,8 @@ } }, { - "BarChartVisual": { - "VisualId": "e2b3323e-0e9f-47ef-8854-b4a9614acc5a", - "Title": { - "Visibility": "HIDDEN" - }, - "Subtitle": { - "Visibility": "HIDDEN" - }, - "ChartConfiguration": { - "FieldWells": { - "BarChartAggregatedFieldWells": { - "Category": [ - { - "CategoricalDimensionField": { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.1.1677079697328", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "License" - } - } - } - ], - "Values": [ - { - "CategoricalMeasureField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1677079687693", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" - }, - "AggregationFunction": "COUNT" - } - } - ], - "Colors": [] - } - }, - "SortConfiguration": { - "CategorySort": [ - { - "FieldSort": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1677079687693", - "Direction": "DESC" - } - } - ], - "CategoryItemsLimit": { - "OtherCategories": "INCLUDE" - }, - "ColorItemsLimit": { - "OtherCategories": "INCLUDE" - }, - "SmallMultiplesLimitConfiguration": { - "OtherCategories": "INCLUDE" - } - }, - "Orientation": "VERTICAL", - "BarsArrangement": "CLUSTERED", - "CategoryLabelOptions": { - "Visibility": "HIDDEN", - "SortIconVisibility": "HIDDEN", - "AxisLabelOptions": [ - { - "CustomLabel": "License Type", - "ApplyTo": { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.1.1677079697328", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "License" - } - } - } - ] - }, - "ValueLabelOptions": { - "AxisLabelOptions": [ - { - "CustomLabel": "Check Outs", - "ApplyTo": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1677079687693", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" - } - } - } - ] - }, - "Legend": { - "Visibility": "HIDDEN" - }, - "DataLabels": { - "Visibility": "VISIBLE", - "CategoryLabelVisibility": "VISIBLE", - "MeasureLabelVisibility": "VISIBLE", - "LabelFontConfiguration": { - "FontSize": { - "Relative": "LARGE" - } - }, - "Overlap": "DISABLE_OVERLAP" - }, - "Tooltip": { - "TooltipVisibility": "VISIBLE", - "SelectedTooltipType": "DETAILED", - "FieldBasedTooltip": { - "AggregationVisibility": "VISIBLE", - "TooltipTitleType": "PRIMARY_VALUE", - "TooltipFields": [ - { - "FieldTooltipItem": { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.1.1677079697328", - "Visibility": "VISIBLE" - } - }, - { - "FieldTooltipItem": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1677079687693", - "Visibility": "VISIBLE" - } - } - ] - } - } - }, - "Actions": [], - "ColumnHierarchies": [] - } - }, - { - "InsightVisual": { - "VisualId": "135bef77-927e-41f8-b23e-9d4aa82bf627", - "Title": { - "Visibility": "HIDDEN", - "FormatText": { - "PlainText": "Insight" - } - }, - "Subtitle": { - "Visibility": "HIDDEN" - }, - "InsightConfiguration": { - "Computations": [ - { - "TopBottomRanked": { - "ComputationId": "11ff5a94-8cbe-4be7-ac1e-8187ff9ddf25", - "Name": "Top", - "Category": { - "CategoricalDimensionField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.distributor.3.1677082498120", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "distributor" - } - } - }, - "Value": { - "CategoricalMeasureField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.title.2.1677082423954", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "title" - }, - "AggregationFunction": "COUNT" - } - }, - "ResultSize": 2, - "Type": "TOP" - } - } - ], - "CustomNarrative": { - "Narrative": "\n Top\u00a0\n \n \n Top.itemsCount\n \n \u00a0\n \n providers\n \u00a0of content\u00a0\n Top.metricField.name\n s are:\n s is:\n
\n \n \n \n
\n
" - } - }, - "Actions": [], - "DataSetIdentifier": "circulation_view" - } - }, - { - "InsightVisual": { - "VisualId": "3c89e0a5-7670-4edd-a230-9445e16dbfd5", + "InsightVisual": { + "VisualId": "137f0703-0cd4-41d5-9db5-a9bf3ed22b91", "Title": { "Visibility": "HIDDEN", "FormatText": { @@ -1893,7 +1452,7 @@ "Computations": [ { "TopBottomRanked": { - "ComputationId": "75561366-a4e3-452b-92ef-87f9d5fc05fa", + "ComputationId": "f5ad3a8d-1809-4216-9841-28cdeca82405", "Name": "Top", "Category": { "CategoricalDimensionField": { @@ -1920,61 +1479,18 @@ } ], "CustomNarrative": { - "Narrative": "\n Top\u00a0\n \n Top.itemsCount\n \u00a0\n \n Top.categoryField.name\n s by check out\u00a0\u00a0\n are:\n \u00a0is:\n
\n \n \n \n
\n
" + "Narrative": "\n \n Top Circulating Ebooks\n \n
\n
\n Top\u00a0\n \n \n Top.itemsCount\n \n \u00a0\n \n \n Top.categoryField.name\n \n s by checkout\u00a0\n \n are:\n \n \u00a0is:\n
\n \n \n \n
\n
" } }, "Actions": [], "DataSetIdentifier": "circulation_view" } - }, - { - "KPIVisual": { - "VisualId": "a64b999e-669d-4b3d-8a89-9bbe64242f0a", - "Title": { - "Visibility": "VISIBLE", - "FormatText": { - "RichText": "\n Patron Sign Ups\n" - } - }, - "Subtitle": { - "Visibility": "HIDDEN" - }, - "ChartConfiguration": { - "FieldWells": { - "Values": [ - { - "CategoricalMeasureField": { - "FieldId": "4dc4e51c-76b2-4595-8b3b-1759f76a05c4.event_type.0.1678472520108", - "Column": { - "DataSetIdentifier": "patron_events", - "ColumnName": "event_type" - }, - "AggregationFunction": "COUNT" - } - } - ], - "TargetValues": [], - "TrendGroups": [] - }, - "SortConfiguration": {} - }, - "Actions": [], - "ColumnHierarchies": [] - } } ], "TextBoxes": [ { - "SheetTextBoxId": "0815dda1-a92f-4cb0-a505-c22b10ed4962", - "Content": "\n
\n Top Circulating Audiobook Titles\u00a0\n
" - }, - { - "SheetTextBoxId": "affb9b3e-aaff-4e3c-bcfb-c706a60f2a20", - "Content": "\n
\n \n Top Circulating Ebook Titles\u00a0\n
" - }, - { - "SheetTextBoxId": "16961c57-7625-4e6b-ab3e-8a5bb19a01d6", - "Content": "\n \u00a0\n \n \u00a0Circulation Summary\n \n" + "SheetTextBoxId": "b8bc8d7d-5931-42db-ba77-087cbf8ffe26", + "Content": "\n \n Current Circulation\n \n
\n The following graphs show current circulation for the past two weeks.\n
\n Note: Updated data for the past 24 hours is loaded each evening at/around midnight Eastern time.\n
" } ], "Layouts": [ @@ -1983,194 +1499,130 @@ "GridLayout": { "Elements": [ { - "ElementId": "16961c57-7625-4e6b-ab3e-8a5bb19a01d6", + "ElementId": "b8bc8d7d-5931-42db-ba77-087cbf8ffe26", "ElementType": "TEXT_BOX", "ColumnIndex": 0, - "ColumnSpan": 29, + "ColumnSpan": 36, "RowIndex": 0, - "RowSpan": 2 + "RowSpan": 3 }, { - "ElementId": "66b253e5-dc34-4b34-956b-bbc9248ba115", + "ElementId": "1ea60774-b6eb-4915-91a0-83e2f1f78300", "ElementType": "VISUAL", "ColumnIndex": 0, "ColumnSpan": 5, - "RowIndex": 2, + "RowIndex": 3, "RowSpan": 3 }, { - "ElementId": "c5e5aa76-1381-453f-9b17-4e25c0b71bba", + "ElementId": "482c8013-427e-4e66-857b-85cd1250f551", "ElementType": "VISUAL", - "ColumnIndex": 5, + "ColumnIndex": 6, "ColumnSpan": 5, - "RowIndex": 2, + "RowIndex": 3, "RowSpan": 3 }, { - "ElementId": "0355e91f-bd1f-4f78-a5c7-b817444f849a", + "ElementId": "5cd25cfa-4b83-4a42-b814-913bda3210fc", "ElementType": "VISUAL", - "ColumnIndex": 10, - "ColumnSpan": 6, - "RowIndex": 2, + "ColumnIndex": 12, + "ColumnSpan": 5, + "RowIndex": 3, "RowSpan": 3 }, { - "ElementId": "a64b999e-669d-4b3d-8a89-9bbe64242f0a", - "ElementType": "VISUAL", - "ColumnIndex": 16, - "ColumnSpan": 4, - "RowIndex": 2, - "RowSpan": 6 - }, - { - "ElementId": "135bef77-927e-41f8-b23e-9d4aa82bf627", + "ElementId": "49142318-25be-4aa0-bdc9-d107d9f40921", "ElementType": "VISUAL", - "ColumnIndex": 20, - "ColumnSpan": 15, - "RowIndex": 2, + "ColumnIndex": 18, + "ColumnSpan": 6, + "RowIndex": 3, "RowSpan": 3 }, { - "ElementId": "744313ed-de25-4af0-b139-83daf2b82c5b", + "ElementId": "154e8c5c-f205-4dd7-8908-d868caa509cb", "ElementType": "VISUAL", "ColumnIndex": 0, "ColumnSpan": 5, - "RowIndex": 5, + "RowIndex": 6, "RowSpan": 3 }, { - "ElementId": "007a32cd-9bea-4cf3-ac2b-20b1aff82bf4", + "ElementId": "71bffd3a-328f-448b-8b61-2e2bc615b094", "ElementType": "VISUAL", - "ColumnIndex": 5, + "ColumnIndex": 6, "ColumnSpan": 5, - "RowIndex": 5, + "RowIndex": 6, "RowSpan": 3 }, { - "ElementId": "9df465dd-cd5b-4e7f-aecb-d96e25ee8bf2", + "ElementId": "a309348a-86d3-49ee-81c8-ff6096bd0076", "ElementType": "VISUAL", - "ColumnIndex": 10, - "ColumnSpan": 6, - "RowIndex": 5, + "ColumnIndex": 12, + "ColumnSpan": 5, + "RowIndex": 6, "RowSpan": 3 }, { - "ElementId": "1aff8e05-147d-4738-9e8f-38dece666b5a", + "ElementId": "ec0b648c-8c9b-476e-b55f-015ca8c7d2e2", "ElementType": "VISUAL", - "ColumnIndex": 20, - "ColumnSpan": 15, - "RowIndex": 5, + "ColumnIndex": 18, + "ColumnSpan": 6, + "RowIndex": 6, "RowSpan": 3 }, { - "ElementId": "76f3c4ec-e5be-4118-a6c8-5fc08ba5ae46", + "ElementId": "51e58b5c-4ec1-44bf-a182-10ddeb84ebaf", "ElementType": "VISUAL", "ColumnIndex": 0, - "ColumnSpan": 10, - "RowIndex": 8, - "RowSpan": 9 - }, - { - "ElementId": "e2b3323e-0e9f-47ef-8854-b4a9614acc5a", - "ElementType": "VISUAL", - "ColumnIndex": 10, - "ColumnSpan": 10, - "RowIndex": 8, - "RowSpan": 9 - }, - { - "ElementId": "aad5b850-72ae-4070-97e0-41e707cb2578", - "ElementType": "VISUAL", - "ColumnIndex": 20, - "ColumnSpan": 15, - "RowIndex": 8, - "RowSpan": 3 - }, - { - "ElementId": "c8f84091-fe92-44e1-81f7-7961cd2b83ea", - "ElementType": "VISUAL", - "ColumnIndex": 20, - "ColumnSpan": 15, - "RowIndex": 11, - "RowSpan": 6 + "ColumnSpan": 36, + "RowIndex": 9, + "RowSpan": 14 }, { - "ElementId": "4d07fe1e-66d6-475b-9c07-052fbc224553", + "ElementId": "501264f7-eb80-40b4-b6c0-d864bbe10764", "ElementType": "VISUAL", "ColumnIndex": 0, - "ColumnSpan": 10, - "RowIndex": 17, - "RowSpan": 9 + "ColumnSpan": 8, + "RowIndex": 23, + "RowSpan": 7 }, { - "ElementId": "0eddfeb4-9130-4845-9ef8-8e38a9dc5154", + "ElementId": "b45d64ae-736b-4184-a03c-ebd232ad307d", "ElementType": "VISUAL", - "ColumnIndex": 10, - "ColumnSpan": 10, - "RowIndex": 17, - "RowSpan": 9 + "ColumnIndex": 8, + "ColumnSpan": 28, + "RowIndex": 23, + "RowSpan": 14 }, { - "ElementId": "edb8bd31-faf9-4ce5-b92a-9b46b3ef8b4b", + "ElementId": "9613d5c1-2456-4b86-8112-99be29d9df81", "ElementType": "VISUAL", - "ColumnIndex": 20, - "ColumnSpan": 15, - "RowIndex": 17, - "RowSpan": 9 + "ColumnIndex": 0, + "ColumnSpan": 8, + "RowIndex": 30, + "RowSpan": 7 }, { - "ElementId": "a2ea45ca-199c-451a-a16e-7c5ae0bd94ed", + "ElementId": "137f0703-0cd4-41d5-9db5-a9bf3ed22b91", "ElementType": "VISUAL", "ColumnIndex": 0, - "ColumnSpan": 20, - "RowIndex": 26, - "RowSpan": 12 + "ColumnSpan": 16, + "RowIndex": 37, + "RowSpan": 8 }, { - "ElementId": "bb3925f8-38b1-4ca9-bc10-a2e37923c77a", + "ElementId": "c20370b9-3945-4ee8-ba6c-bb6183f85c0f", "ElementType": "VISUAL", "ColumnIndex": 20, - "ColumnSpan": 15, - "RowIndex": 26, - "RowSpan": 12 - }, - { - "ElementId": "affb9b3e-aaff-4e3c-bcfb-c706a60f2a20", - "ElementType": "TEXT_BOX", - "ColumnIndex": 0, - "ColumnSpan": 18, - "RowIndex": 38, - "RowSpan": 2 - }, - { - "ElementId": "0815dda1-a92f-4cb0-a505-c22b10ed4962", - "ElementType": "TEXT_BOX", - "ColumnIndex": 18, - "ColumnSpan": 18, - "RowIndex": 38, - "RowSpan": 2 - }, - { - "ElementId": "3c89e0a5-7670-4edd-a230-9445e16dbfd5", - "ElementType": "VISUAL", - "ColumnIndex": 0, - "ColumnSpan": 18, - "RowIndex": 40, - "RowSpan": 9 - }, - { - "ElementId": "e62cf0c7-5811-46fb-a67f-50302906f3de", - "ElementType": "VISUAL", - "ColumnIndex": 18, - "ColumnSpan": 18, - "RowIndex": 40, + "ColumnSpan": 16, + "RowIndex": 37, "RowSpan": 8 } ], "CanvasSizeOptions": { "ScreenCanvasSizeOptions": { "ResizeOption": "FIXED", - "OptimizedViewPortWidth": "1280px" + "OptimizedViewPortWidth": "1600px" } } } @@ -2183,36 +1635,12 @@ "GridLayout": { "Elements": [ { - "ElementId": "924773a9-f66a-41d4-845e-30b27a8f3854", + "ElementId": "77b24cb9-f721-4890-a3ed-4d0c38087730", "ElementType": "FILTER_CONTROL", "ColumnIndex": 0, "ColumnSpan": 4, "RowIndex": 0, "RowSpan": 1 - }, - { - "ElementId": "76519b7c-cddd-45fa-963f-b76ac68cb196", - "ElementType": "PARAMETER_CONTROL", - "ColumnIndex": 4, - "ColumnSpan": 2, - "RowIndex": 0, - "RowSpan": 1 - }, - { - "ElementId": "ae6540bf-efaa-42f9-a0c4-0b2f9808f56e", - "ElementType": "FILTER_CONTROL", - "ColumnIndex": 6, - "ColumnSpan": 3, - "RowIndex": 0, - "RowSpan": 1 - }, - { - "ElementId": "e886bfc4-1ea7-43dc-9e5a-c6a5df10864d", - "ElementType": "FILTER_CONTROL", - "ColumnIndex": 9, - "ColumnSpan": 3, - "RowIndex": 0, - "RowSpan": 1 } ] } @@ -2222,18 +1650,15 @@ "ContentType": "INTERACTIVE" }, { - "SheetId": "e853621f-c297-4b06-8080-613417909e8a", - "Name": "Circulation over Time", - "ParameterControls": [ + "SheetId": "6a460b10-9f34-4596-8eb5-c9eb37abd375", + "Name": "Historical Circulation", + "FilterControls": [ { - "Dropdown": { - "ParameterControlId": "f978c7c2-7393-43a7-a272-4a48bccf9ba1", - "Title": "TimeZone", - "SourceParameterName": "TimeZone", + "RelativeDateTime": { + "FilterControlId": "0fd6ade1-afec-4976-8415-e87a6f20001d", + "Title": "Time Frame for Circulation Data:", + "SourceFilterId": "d3191bff-a49d-4c14-a293-6189203367df", "DisplayOptions": { - "SelectAllOptions": { - "Visibility": "VISIBLE" - }, "TitleOptions": { "Visibility": "VISIBLE", "FontConfiguration": { @@ -2242,38 +1667,18 @@ } } }, + "DateTimeFormat": "MM/DD/YYYY", "InfoIconLabelOptions": { "Visibility": "HIDDEN" } - }, - "Type": "SINGLE_SELECT", - "SelectableValues": { - "Values": [ - "Alaska", - "Central", - "Eastern", - "Hawaii", - "Mountain", - "Pacific" - ] } } - } - ], - "FilterControls": [ - { - "DateTimePicker": { - "FilterControlId": "a110f7d6-52ef-44c3-9f78-5f8d9ab8df00", - "Title": "LocalTime between", - "SourceFilterId": "01049847-22f7-4ac3-8f9e-73d0a50bd022", - "Type": "DATE_RANGE" - } }, { "Dropdown": { - "FilterControlId": "d5b0c372-abe5-4e81-a321-dc6045120923", - "Title": "Library Selection", - "SourceFilterId": "5685e651-2407-4f48-9863-95ef08a213b5", + "FilterControlId": "924773a9-f66a-41d4-845e-30b27a8f3854", + "Title": "Select Library/Libraries:", + "SourceFilterId": "c726bb42-5244-44d3-9590-40c61603e1b8", "DisplayOptions": { "SelectAllOptions": { "Visibility": "VISIBLE" @@ -2282,7 +1687,7 @@ "Visibility": "VISIBLE", "FontConfiguration": { "FontSize": { - "Relative": "MEDIUM" + "Relative": "LARGE" } } }, @@ -2296,330 +1701,199 @@ ], "Visuals": [ { - "BarChartVisual": { - "VisualId": "28b665e7-6c3d-4a4d-ab09-b366e8423c11", + "KPIVisual": { + "VisualId": "0aa45d09-a569-44d8-a725-d97c03462168", "Title": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n \n \n Weekly Check Outs\n \n \n" + "RichText": "\n Total Holds\n" } }, "Subtitle": { - "Visibility": "VISIBLE", - "FormatText": { - "RichText": "\n License Type\n" - } + "Visibility": "HIDDEN" }, "ChartConfiguration": { "FieldWells": { - "BarChartAggregatedFieldWells": { - "Category": [ - { - "DateDimensionField": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "LocalTime" - }, - "DateGranularity": "MONTH", - "HierarchyId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", - "FormatConfiguration": { - "DateTimeFormat": "MMM D, YYYY", - "NullValueFormatConfiguration": { - "NullString": "null" - } - } - } - } - ], - "Values": [ - { - "CategoricalMeasureField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" - }, - "AggregationFunction": "COUNT" - } - } - ], - "Colors": [ - { - "CategoricalDimensionField": { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677095443996", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "License" - } - } - } - ] - } - }, - "SortConfiguration": { - "CategorySort": [ + "Values": [ { - "FieldSort": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", - "Direction": "ASC" + "CategoricalMeasureField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678471339042", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "title" + }, + "AggregationFunction": "COUNT" } } ], - "CategoryItemsLimit": { - "OtherCategories": "INCLUDE" - }, - "ColorItemsLimit": { - "OtherCategories": "INCLUDE" - }, - "SmallMultiplesLimitConfiguration": { - "OtherCategories": "INCLUDE" - } - }, - "Orientation": "VERTICAL", - "BarsArrangement": "STACKED", - "CategoryAxis": { - "AxisLineVisibility": "HIDDEN", - "ScrollbarOptions": { - "Visibility": "HIDDEN" - } - }, - "CategoryLabelOptions": { - "SortIconVisibility": "HIDDEN" + "TargetValues": [], + "TrendGroups": [] }, - "ValueAxis": { - "TickLabelOptions": { - "LabelOptions": { - "Visibility": "VISIBLE" + "SortConfiguration": {}, + "KPIOptions": { + "PrimaryValueFontConfiguration": { + "FontSize": { + "Relative": "LARGE" } - }, - "GridLineVisibility": "HIDDEN" - }, - "ValueLabelOptions": { - "SortIconVisibility": "HIDDEN", - "AxisLabelOptions": [ + } + } + }, + "Actions": [], + "ColumnHierarchies": [] + } + }, + { + "KPIVisual": { + "VisualId": "642e5c01-0a9a-4edd-a41f-5cfa332a8180", + "Title": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n Total Checkouts\n" + } + }, + "Subtitle": { + "Visibility": "HIDDEN" + }, + "ChartConfiguration": { + "FieldWells": { + "Values": [ { - "CustomLabel": "Check Outs", - "ApplyTo": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", + "CategoricalMeasureField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678471290909", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" - } + "ColumnName": "title" + }, + "AggregationFunction": "COUNT" } } - ] - }, - "DataLabels": { - "Visibility": "VISIBLE", - "Overlap": "DISABLE_OVERLAP" + ], + "TargetValues": [], + "TrendGroups": [] }, - "Tooltip": { - "TooltipVisibility": "VISIBLE", - "SelectedTooltipType": "DETAILED", - "FieldBasedTooltip": { - "AggregationVisibility": "HIDDEN", - "TooltipTitleType": "PRIMARY_VALUE", - "TooltipFields": [ - { - "FieldTooltipItem": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", - "Label": "Check Outs", - "Visibility": "VISIBLE" - } - }, - { - "FieldTooltipItem": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", - "Visibility": "VISIBLE" - } - }, - { - "FieldTooltipItem": { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677095443996", - "Visibility": "VISIBLE" - } - } - ] + "SortConfiguration": {}, + "KPIOptions": { + "PrimaryValueFontConfiguration": { + "FontSize": { + "Relative": "LARGE" + } } } }, "Actions": [], - "ColumnHierarchies": [ - { - "DateTimeHierarchy": { - "HierarchyId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004" - } - } - ] + "ColumnHierarchies": [] } }, { - "BarChartVisual": { - "VisualId": "b7a27855-6818-4db8-a19d-1f628caf29f4", + "KPIVisual": { + "VisualId": "3c2c39db-6909-4f70-9e41-c67c2420a9c3", "Title": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n \n \n Monthly Check Outs\n \n \n" + "RichText": "\n Open Access Checkouts\n" } }, "Subtitle": { - "Visibility": "VISIBLE", - "FormatText": { - "RichText": "\n Format\n" - } + "Visibility": "HIDDEN" }, "ChartConfiguration": { "FieldWells": { - "BarChartAggregatedFieldWells": { - "Category": [ - { - "DateDimensionField": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "LocalTime" - }, - "DateGranularity": "MONTH", - "HierarchyId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", - "FormatConfiguration": { - "DateTimeFormat": "MMM D, YYYY", - "NullValueFormatConfiguration": { - "NullString": "null" - } - } - } - } - ], - "Values": [ - { - "CategoricalMeasureField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" - }, - "AggregationFunction": "COUNT" - } + "Values": [ + { + "CategoricalMeasureField": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676496955880", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "event_type" + }, + "AggregationFunction": "COUNT" } - ], - "Colors": [ - { - "CategoricalDimensionField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.2.1676650091730", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "medium" - } + } + ], + "TargetValues": [], + "TrendGroups": [ + { + "CategoricalDimensionField": { + "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.1.1678804255500", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "Event Short Name" } } - ] - } + } + ] }, "SortConfiguration": { - "CategorySort": [ + "TrendGroupSort": [ { "FieldSort": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", - "Direction": "ASC" + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676496955880", + "Direction": "DESC" } } - ], - "CategoryItemsLimit": { - "OtherCategories": "INCLUDE" - }, - "ColorItemsLimit": { - "OtherCategories": "INCLUDE" - }, - "SmallMultiplesLimitConfiguration": { - "OtherCategories": "INCLUDE" - } - }, - "Orientation": "VERTICAL", - "BarsArrangement": "STACKED", - "CategoryAxis": { - "AxisLineVisibility": "HIDDEN", - "ScrollbarOptions": { - "Visibility": "HIDDEN" - } - }, - "CategoryLabelOptions": { - "SortIconVisibility": "HIDDEN" + ] }, - "ValueAxis": { - "TickLabelOptions": { - "LabelOptions": { - "Visibility": "VISIBLE" + "KPIOptions": { + "PrimaryValueFontConfiguration": { + "FontSize": { + "Relative": "LARGE" } - }, - "GridLineVisibility": "HIDDEN" - }, - "ValueLabelOptions": { - "SortIconVisibility": "HIDDEN", - "AxisLabelOptions": [ + } + } + }, + "Actions": [], + "ColumnHierarchies": [] + } + }, + { + "KPIVisual": { + "VisualId": "8ac2b6bf-cc0e-445a-9af8-334defe68c55", + "Title": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n Audiobook Holds\n" + } + }, + "Subtitle": { + "Visibility": "HIDDEN" + }, + "ChartConfiguration": { + "FieldWells": { + "Values": [ { - "CustomLabel": "Check Outs", - "ApplyTo": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", + "CategoricalMeasureField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678471328934", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" - } + "ColumnName": "title" + }, + "AggregationFunction": "COUNT" } } - ] - }, - "DataLabels": { - "Visibility": "VISIBLE", - "Overlap": "DISABLE_OVERLAP" + ], + "TargetValues": [], + "TrendGroups": [] }, - "Tooltip": { - "TooltipVisibility": "VISIBLE", - "SelectedTooltipType": "DETAILED", - "FieldBasedTooltip": { - "AggregationVisibility": "HIDDEN", - "TooltipTitleType": "PRIMARY_VALUE", - "TooltipFields": [ - { - "FieldTooltipItem": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", - "Label": "Check Outs", - "Visibility": "VISIBLE" - } - }, - { - "FieldTooltipItem": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", - "Visibility": "VISIBLE" - } - }, - { - "FieldTooltipItem": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.2.1676650091730", - "Visibility": "VISIBLE" - } - } - ] + "SortConfiguration": {}, + "KPIOptions": { + "PrimaryValueFontConfiguration": { + "FontSize": { + "Relative": "LARGE" + } } } }, "Actions": [], - "ColumnHierarchies": [ - { - "DateTimeHierarchy": { - "HierarchyId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004" - } - } - ] + "ColumnHierarchies": [] } }, { - "PivotTableVisual": { - "VisualId": "eba72d73-f723-4434-895a-2aefd7b947c2", + "KPIVisual": { + "VisualId": "139d9929-101b-48c7-b141-1c4e9cb3f0d0", "Title": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n \n \n Monthly Circulation Events\n \n \n" + "RichText": "\n Ebook Holds\n" } }, "Subtitle": { @@ -2627,67 +1901,179 @@ }, "ChartConfiguration": { "FieldWells": { - "PivotTableAggregatedFieldWells": { - "Rows": [ - { - "DateDimensionField": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676651221498", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "LocalTime" - }, - "DateGranularity": "MONTH" - } - }, - { - "CategoricalDimensionField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676651251164", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "medium" - }, - "FormatConfiguration": { - "NullValueFormatConfiguration": { - "NullString": "Unknown" - } - } - } + "Values": [ + { + "CategoricalMeasureField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678471339042", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "title" + }, + "AggregationFunction": "COUNT" } - ], - "Columns": [ - { + } + ], + "TargetValues": [], + "TrendGroups": [] + }, + "SortConfiguration": {}, + "KPIOptions": { + "PrimaryValueFontConfiguration": { + "FontSize": { + "Relative": "LARGE" + } + } + } + }, + "Actions": [], + "ColumnHierarchies": [] + } + }, + { + "InsightVisual": { + "VisualId": "89171b34-0956-4b6f-878a-95966befbb22", + "Title": { + "Visibility": "HIDDEN", + "FormatText": { + "PlainText": "Insight" + } + }, + "Subtitle": { + "Visibility": "HIDDEN" + }, + "InsightConfiguration": { + "Computations": [ + { + "TopBottomRanked": { + "ComputationId": "007cadb0-21ff-40e5-ac64-906895dbb836", + "Name": "Top", + "Category": { "CategoricalDimensionField": { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677095868043", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.title.1.1677085004970", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "License" + "ColumnName": "title" } } }, - { - "CategoricalDimensionField": { - "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.3.1678481843276", + "Value": { + "CategoricalMeasureField": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.2.1677085013847", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "Event Short Name" - } + "ColumnName": "event_type" + }, + "AggregationFunction": "COUNT" } - } - ], - "Values": [] + }, + "ResultSize": 10, + "Type": "TOP" + } } - }, - "SortConfiguration": { - "FieldSortOptions": [] - }, - "TableOptions": { - "ColumnNamesVisibility": "HIDDEN", + ], + "CustomNarrative": { + "Narrative": "\n \n Top Circulating Audiobooks\n \n
\n
\n Top\u00a0\n \n \n Top.itemsCount\n \n \u00a0\n \n \n Top.categoryField.name\n \n s by checkout\u00a0\n \n are:\n \n \u00a0is:\n
\n \n \n \n
\n
" + } + }, + "Actions": [ + { + "CustomActionId": "bf3160d4-edf4-4572-9b9e-ae27bed2424f", + "Name": "Action 1", + "Status": "ENABLED", + "Trigger": "DATA_POINT_CLICK", + "ActionOperations": [ + { + "FilterOperation": { + "SelectedFieldsConfiguration": { + "SelectedFieldOptions": "ALL_FIELDS" + }, + "TargetVisualsConfiguration": { + "SameSheetTargetVisualConfiguration": { + "TargetVisualOptions": "ALL_VISUALS" + } + } + } + } + ] + } + ], + "DataSetIdentifier": "circulation_view" + } + }, + { + "PivotTableVisual": { + "VisualId": "d4eee95d-393d-43ef-8042-c04aa9891d52", + "Title": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n \n Checkouts By Audience\n \n" + } + }, + "Subtitle": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n By License Type\n
\n \n *audience metadata value of title not of user\n \n
" + } + }, + "ChartConfiguration": { + "FieldWells": { + "PivotTableAggregatedFieldWells": { + "Rows": [ + { + "CategoricalDimensionField": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.audience.0.1676497159220", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "audience" + }, + "FormatConfiguration": { + "NullValueFormatConfiguration": { + "NullString": "Unknown" + } + } + } + } + ], + "Columns": [ + { + "CategoricalDimensionField": { + "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677082196914", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "License" + } + } + } + ], + "Values": [ + { + "CategoricalMeasureField": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.1.1676497163910", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "event_type" + }, + "AggregationFunction": "COUNT" + } + } + ] + } + }, + "SortConfiguration": { + "FieldSortOptions": [] + }, + "TableOptions": { + "ColumnNamesVisibility": "HIDDEN", "ColumnHeaderStyle": { "FontConfiguration": { + "FontSize": { + "Relative": "MEDIUM" + }, "FontColor": "#2185D9" }, + "TextWrap": "WRAP", "HorizontalTextAlignment": "CENTER", - "BackgroundColor": "#FFFFFF", + "Height": 25, "Border": { "UniformBorder": { "Style": "NONE" @@ -2696,16 +2082,24 @@ }, "RowHeaderStyle": { "FontConfiguration": { + "FontSize": { + "Relative": "SMALL" + }, "FontColor": "#000000" }, "Border": { "UniformBorder": { - "Style": "NONE" + "Thickness": 1, + "Style": "SOLID" } } }, "CellStyle": { - "HorizontalTextAlignment": "CENTER", + "FontConfiguration": { + "FontSize": { + "Relative": "MEDIUM" + } + }, "BackgroundColor": "#FFFFFF", "Height": 25, "Border": { @@ -2718,10 +2112,14 @@ }, "RowFieldNamesStyle": { "FontConfiguration": { + "FontSize": { + "Relative": "MEDIUM" + }, "FontColor": "#2185D9" }, + "TextWrap": "WRAP", "HorizontalTextAlignment": "CENTER", - "BackgroundColor": "#FFFFFF", + "Height": 25, "Border": { "UniformBorder": { "Style": "NONE" @@ -2737,8 +2135,7 @@ }, "TotalOptions": { "RowTotalOptions": { - "TotalsVisibility": "HIDDEN", - "ScrollStatus": "SCROLLED" + "TotalsVisibility": "HIDDEN" }, "ColumnTotalOptions": { "TotalsVisibility": "HIDDEN" @@ -2747,21 +2144,17 @@ "FieldOptions": { "SelectedFieldOptions": [ { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676651221498", - "CustomLabel": "Month", - "Visibility": "VISIBLE" - }, - { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676651251164", - "CustomLabel": "Format", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.audience.0.1676497159220", + "CustomLabel": "Audience", "Visibility": "VISIBLE" }, { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677095868043", + "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677082196914", "Visibility": "VISIBLE" }, { - "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.3.1678481843276", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.1.1676497163910", + "CustomLabel": "Checkouts", "Visibility": "VISIBLE" } ], @@ -2769,72 +2162,25 @@ { "DataPathList": [ { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676651221498", - "FieldValue": "LocalTime" - } - ], - "Width": "181px" - }, - { - "DataPathList": [ - { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677095868043", - "FieldValue": "Licensed", - "DataPathType": { - "PivotTableDataPathType": "COUNT_METRIC_COLUMN" - } - }, - { - "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.3.1678481843276", - "FieldValue": "Check Out", - "DataPathType": { - "PivotTableDataPathType": "COUNT_METRIC_COLUMN" - } - }, - { - "DataPathType": { - "PivotTableDataPathType": "COUNT_METRIC_COLUMN" - } + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.audience.0.1676497159220", + "FieldValue": "audience" } ], - "Width": "176px" + "Width": "94px" }, { "DataPathList": [ { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677095868043", - "FieldValue": "Open Access", - "DataPathType": { - "PivotTableDataPathType": "COUNT_METRIC_COLUMN" - } - }, - { - "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.3.1678481843276", - "FieldValue": "Check Out", - "DataPathType": { - "PivotTableDataPathType": "COUNT_METRIC_COLUMN" - } + "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677082196914", + "FieldValue": "Book", + "DataPathType": {} }, { - "DataPathType": { - "PivotTableDataPathType": "COUNT_METRIC_COLUMN" - } + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.1.1676497163910", + "FieldValue": "event_type" } ], - "Width": "137px" - } - ], - "CollapseStateOptions": [ - { - "Target": { - "FieldDataPathValues": [ - { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676651221498", - "FieldValue": "2023-01-01 00:00:00.000" - } - ] - }, - "State": "COLLAPSED" + "Width": "78px" } ] } @@ -2843,178 +2189,123 @@ } }, { - "BarChartVisual": { - "VisualId": "a6b76673-2e71-4e02-9225-20c02ed9e933", + "KPIVisual": { + "VisualId": "f1a6cdab-83a4-4e55-8eab-3741f744e2e4", "Title": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n \n \n Weekly Check Outs\n \n \n" + "RichText": "\n Licensed Checkouts\n" } }, "Subtitle": { - "Visibility": "VISIBLE", - "FormatText": { - "RichText": "\n License Type\n" - } + "Visibility": "HIDDEN" }, "ChartConfiguration": { "FieldWells": { - "BarChartAggregatedFieldWells": { - "Category": [ - { - "DateDimensionField": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "LocalTime" - }, - "DateGranularity": "WEEK", - "HierarchyId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", - "FormatConfiguration": { - "DateTimeFormat": "MMM D, YYYY", - "NullValueFormatConfiguration": { - "NullString": "null" - } - } - } - } - ], - "Values": [ - { - "CategoricalMeasureField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" - }, - "AggregationFunction": "COUNT" - } - } - ], - "Colors": [ - { - "CategoricalDimensionField": { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677095443996", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "License" - } - } - } - ] - } - }, - "SortConfiguration": { - "CategorySort": [ + "Values": [ { - "FieldSort": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", - "Direction": "ASC" + "CategoricalMeasureField": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676496955880", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "event_type" + }, + "AggregationFunction": "COUNT" } } ], - "CategoryItemsLimit": { - "OtherCategories": "INCLUDE" - }, - "ColorItemsLimit": { - "OtherCategories": "INCLUDE" - }, - "SmallMultiplesLimitConfiguration": { - "OtherCategories": "INCLUDE" - } + "TargetValues": [], + "TrendGroups": [] }, - "Orientation": "VERTICAL", - "BarsArrangement": "STACKED", - "CategoryAxis": { - "AxisLineVisibility": "HIDDEN", - "ScrollbarOptions": { - "Visibility": "HIDDEN" - }, - "AxisOffset": "70px" - }, - "CategoryLabelOptions": { - "SortIconVisibility": "HIDDEN" - }, - "ValueAxis": { - "TickLabelOptions": { - "LabelOptions": { - "Visibility": "VISIBLE" + "SortConfiguration": {}, + "KPIOptions": { + "PrimaryValueFontConfiguration": { + "FontSize": { + "Relative": "LARGE" } - }, - "GridLineVisibility": "HIDDEN" - }, - "ValueLabelOptions": { - "SortIconVisibility": "HIDDEN", - "AxisLabelOptions": [ + } + } + }, + "Actions": [], + "ColumnHierarchies": [] + } + }, + { + "KPIVisual": { + "VisualId": "c4fdbbfd-9157-49ae-8392-e10e04523168", + "Title": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n Audiobook Checkouts\n" + } + }, + "Subtitle": { + "Visibility": "HIDDEN" + }, + "ChartConfiguration": { + "FieldWells": { + "Values": [ { - "CustomLabel": "Check Outs", - "ApplyTo": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", + "CategoricalMeasureField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678471301298", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" - } + "ColumnName": "title" + }, + "AggregationFunction": "COUNT" } } - ] - }, - "DataLabels": { - "Visibility": "VISIBLE", - "Overlap": "DISABLE_OVERLAP" + ], + "TargetValues": [], + "TrendGroups": [] }, - "Tooltip": { - "TooltipVisibility": "VISIBLE", - "SelectedTooltipType": "DETAILED", - "FieldBasedTooltip": { - "AggregationVisibility": "HIDDEN", - "TooltipTitleType": "PRIMARY_VALUE", - "TooltipFields": [ - { - "FieldTooltipItem": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", - "Label": "Check Outs", - "Visibility": "VISIBLE" - } - }, - { - "FieldTooltipItem": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", - "Visibility": "VISIBLE" - } - }, - { - "FieldTooltipItem": { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677095443996", - "Visibility": "VISIBLE" - } - } - ] + "SortConfiguration": {}, + "KPIOptions": { + "PrimaryValueFontConfiguration": { + "FontSize": { + "Relative": "LARGE" + } } } }, - "Actions": [], - "ColumnHierarchies": [ + "Actions": [ { - "DateTimeHierarchy": { - "HierarchyId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004" - } + "CustomActionId": "a856a5d4-eed4-423a-a81e-951cdd70ccb6", + "Name": "Action 1", + "Status": "ENABLED", + "Trigger": "DATA_POINT_CLICK", + "ActionOperations": [ + { + "FilterOperation": { + "SelectedFieldsConfiguration": { + "SelectedFieldOptions": "ALL_FIELDS" + }, + "TargetVisualsConfiguration": { + "SameSheetTargetVisualConfiguration": { + "TargetVisualOptions": "ALL_VISUALS" + } + } + } + } + ] } - ] + ], + "ColumnHierarchies": [] } }, { "BarChartVisual": { - "VisualId": "112075dc-0e4f-41cb-8910-bf9852d1d81f", + "VisualId": "a7bbfb86-f675-4808-b88f-e6d96d8e996b", "Title": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n \n \n Weekly Check Outs\n \n \n" + "RichText": "\n \n Circulation By Distributor\n \n" } }, "Subtitle": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n Format\n" + "RichText": "\n By Format\n" } }, "ChartConfiguration": { @@ -3022,39 +2313,20 @@ "BarChartAggregatedFieldWells": { "Category": [ { - "DateDimensionField": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", + "CategoricalDimensionField": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.distributor.0.1676495893411", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "LocalTime" - }, - "DateGranularity": "WEEK", - "HierarchyId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", - "FormatConfiguration": { - "DateTimeFormat": "MMM D, YYYY", - "NullValueFormatConfiguration": { - "NullString": "null" - } + "ColumnName": "distributor" } } } ], - "Values": [ - { - "CategoricalMeasureField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" - }, - "AggregationFunction": "COUNT" - } - } - ], + "Values": [], "Colors": [ { "CategoricalDimensionField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.2.1676650091730", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676498382311", "Column": { "DataSetIdentifier": "circulation_view", "ColumnName": "medium" @@ -3068,8 +2340,8 @@ "CategorySort": [ { "FieldSort": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", - "Direction": "ASC" + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.distributor.0.1676495893411", + "Direction": "DESC" } } ], @@ -3084,42 +2356,46 @@ } }, "Orientation": "VERTICAL", - "BarsArrangement": "STACKED", + "BarsArrangement": "CLUSTERED", "CategoryAxis": { "AxisLineVisibility": "HIDDEN", "ScrollbarOptions": { "Visibility": "HIDDEN" - }, - "AxisOffset": "82px" + } }, "CategoryLabelOptions": { - "SortIconVisibility": "HIDDEN" - }, - "ValueAxis": { - "TickLabelOptions": { - "LabelOptions": { - "Visibility": "VISIBLE" - } - }, - "GridLineVisibility": "HIDDEN" - }, - "ValueLabelOptions": { "SortIconVisibility": "HIDDEN", "AxisLabelOptions": [ { - "CustomLabel": "Check Outs", + "CustomLabel": "Distributor", "ApplyTo": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.distributor.0.1676495893411", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" + "ColumnName": "distributor" } } } ] }, - "DataLabels": { + "ValueAxis": { + "GridLineVisibility": "HIDDEN" + }, + "Legend": { "Visibility": "VISIBLE", + "Title": { + "Visibility": "HIDDEN" + }, + "Position": "BOTTOM", + "Width": "228px" + }, + "DataLabels": { + "Visibility": "HIDDEN", + "LabelFontConfiguration": { + "FontSize": { + "Relative": "LARGE" + } + }, "Overlap": "DISABLE_OVERLAP" }, "Tooltip": { @@ -3131,20 +2407,13 @@ "TooltipFields": [ { "FieldTooltipItem": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", - "Label": "Check Outs", - "Visibility": "VISIBLE" - } - }, - { - "FieldTooltipItem": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.distributor.0.1676495893411", "Visibility": "VISIBLE" } }, { "FieldTooltipItem": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.2.1676650091730", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676498382311", "Visibility": "VISIBLE" } } @@ -3153,47 +2422,81 @@ } }, "Actions": [], - "ColumnHierarchies": [ - { - "DateTimeHierarchy": { - "HierarchyId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004" + "ColumnHierarchies": [] + } + }, + { + "KPIVisual": { + "VisualId": "d385dda8-d2d5-4ad0-93ac-0b4f87a4f944", + "Title": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n Ebook Checkouts\n" + } + }, + "Subtitle": { + "Visibility": "HIDDEN" + }, + "ChartConfiguration": { + "FieldWells": { + "Values": [ + { + "CategoricalMeasureField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678471290909", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "title" + }, + "AggregationFunction": "COUNT" + } + } + ], + "TargetValues": [], + "TrendGroups": [] + }, + "SortConfiguration": {}, + "KPIOptions": { + "PrimaryValueFontConfiguration": { + "FontSize": { + "Relative": "LARGE" + } } } - ] + }, + "Actions": [], + "ColumnHierarchies": [] } }, { "PivotTableVisual": { - "VisualId": "9dcded04-c08a-4bfe-a579-429985f03418", + "VisualId": "80484134-a0fb-4ed9-a1a3-398a45c73ed7", "Title": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n \n \n Hourly Circulation Events\n \n \n" + "RichText": "\n \n Checkouts By Audience\n \n" } }, "Subtitle": { - "Visibility": "HIDDEN" + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n By Format\n
\n \n *audience metadata value of title not of user\n \n
" + } }, "ChartConfiguration": { "FieldWells": { "PivotTableAggregatedFieldWells": { "Rows": [ - { - "DateDimensionField": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676650589898", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "LocalTime" - }, - "DateGranularity": "HOUR" - } - }, { "CategoricalDimensionField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.title.2.1676650621182", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.audience.0.1676497159220", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "title" + "ColumnName": "audience" + }, + "FormatConfiguration": { + "NullValueFormatConfiguration": { + "NullString": "Unknown" + } } } } @@ -3201,28 +2504,10 @@ "Columns": [ { "CategoricalDimensionField": { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.4.1677090384659", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.2.1676657378146", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "License" - } - } - }, - { - "CategoricalDimensionField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676650610407", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "medium" - } - } - }, - { - "CategoricalDimensionField": { - "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.5.1678482106907", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "Event Short Name" + "ColumnName": "medium" } } } @@ -3230,7 +2515,7 @@ "Values": [ { "CategoricalMeasureField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.3.1676651855018", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.1.1676497163910", "Column": { "DataSetIdentifier": "circulation_view", "ColumnName": "event_type" @@ -3245,18 +2530,17 @@ "FieldSortOptions": [] }, "TableOptions": { - "SingleMetricVisibility": "HIDDEN", - "ColumnNamesVisibility": "VISIBLE", + "ColumnNamesVisibility": "HIDDEN", "ColumnHeaderStyle": { "FontConfiguration": { "FontSize": { - "Relative": "EXTRA_LARGE" + "Relative": "MEDIUM" }, "FontColor": "#2185D9" }, - "HorizontalTextAlignment": "RIGHT", - "BackgroundColor": "#FFFFFF", - "Height": 34, + "TextWrap": "WRAP", + "HorizontalTextAlignment": "CENTER", + "Height": 25, "Border": { "UniformBorder": { "Style": "NONE" @@ -3265,35 +2549,43 @@ }, "RowHeaderStyle": { "FontConfiguration": { + "FontSize": { + "Relative": "SMALL" + }, "FontColor": "#000000" }, - "HorizontalTextAlignment": "LEFT", "Border": { "UniformBorder": { - "Style": "NONE" + "Style": "SOLID" } } }, "CellStyle": { - "TextWrap": "WRAP", + "FontConfiguration": { + "FontSize": { + "Relative": "MEDIUM" + } + }, "BackgroundColor": "#FFFFFF", - "Height": 33, + "Height": 26, "Border": { - "UniformBorder": { - "Style": "NONE" + "SideSpecificBorder": { + "InnerVertical": { + "Style": "SOLID" + } } } }, "RowFieldNamesStyle": { "FontConfiguration": { "FontSize": { - "Relative": "EXTRA_LARGE" + "Relative": "MEDIUM" }, "FontColor": "#2185D9" }, - "HorizontalTextAlignment": "RIGHT", - "BackgroundColor": "#FFFFFF", - "Height": 34, + "TextWrap": "WRAP", + "HorizontalTextAlignment": "CENTER", + "Height": 25, "Border": { "UniformBorder": { "Style": "NONE" @@ -3302,51 +2594,26 @@ }, "RowAlternateColorOptions": { "Status": "ENABLED", - "UsePrimaryBackgroundColor": "ENABLED" - } - }, - "TotalOptions": { - "RowSubtotalOptions": { - "TotalsVisibility": "HIDDEN", - "FieldLevel": "ALL", - "TotalCellStyle": {}, - "StyleTargets": [ - { - "CellType": "TOTAL" - } + "RowAlternateColors": [ + "#EEEEEE" ] - }, - "ColumnSubtotalOptions": { - "TotalsVisibility": "HIDDEN" } }, "FieldOptions": { "SelectedFieldOptions": [ { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676650589898", - "CustomLabel": "Date & Hour", - "Visibility": "VISIBLE" - }, - { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.title.2.1676650621182", - "CustomLabel": "Title", - "Visibility": "VISIBLE" - }, - { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.4.1677090384659", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.audience.0.1676497159220", + "CustomLabel": "Audience", "Visibility": "VISIBLE" }, { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676650610407", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.2.1676657378146", "CustomLabel": "Format", "Visibility": "VISIBLE" }, { - "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.5.1678482106907", - "Visibility": "VISIBLE" - }, - { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.3.1676651855018", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.1.1676497163910", + "CustomLabel": "Checkouts", "Visibility": "VISIBLE" } ], @@ -3354,55 +2621,25 @@ { "DataPathList": [ { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.title.2.1676650621182", - "FieldValue": "title" + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.audience.0.1676497159220", + "FieldValue": "audience" } ], - "Width": "390px" + "Width": "94px" }, { "DataPathList": [ { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676650589898", - "FieldValue": "LocalTime" + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.2.1676657378146", + "FieldValue": "Book", + "DataPathType": {} + }, + { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.1.1676497163910", + "FieldValue": "event_type" } ], - "Width": "161px" - } - ], - "CollapseStateOptions": [ - { - "Target": { - "FieldDataPathValues": [ - { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676650589898", - "FieldValue": "2023-02-09 19:00:00.000" - } - ] - }, - "State": "COLLAPSED" - }, - { - "Target": { - "FieldDataPathValues": [ - { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676650589898", - "FieldValue": "2023-02-16 07:00:00.000" - } - ] - }, - "State": "COLLAPSED" - }, - { - "Target": { - "FieldDataPathValues": [ - { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676650589898", - "FieldValue": "2023-02-16 13:00:00.000" - } - ] - }, - "State": "COLLAPSED" + "Width": "94px" } ] } @@ -3411,247 +2648,233 @@ } }, { - "PivotTableVisual": { - "VisualId": "9fe69450-8395-4345-96c2-a11635454852", + "LineChartVisual": { + "VisualId": "dae76451-f3ac-438b-af0d-781be430f547", "Title": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n \n \n Weekly Circulation Events\n \n \n" + "RichText": "\n Checkouts Over Time\n" } }, "Subtitle": { - "Visibility": "HIDDEN" + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "By Format" + } }, "ChartConfiguration": { "FieldWells": { - "PivotTableAggregatedFieldWells": { - "Rows": [ + "LineChartAggregatedFieldWells": { + "Category": [ { "DateDimensionField": { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676651221498", + "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676920506247", "Column": { "DataSetIdentifier": "circulation_view", "ColumnName": "LocalTime" }, - "DateGranularity": "WEEK" + "HierarchyId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676920506247" } - }, + } + ], + "Values": [ { - "CategoricalDimensionField": { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676651251164", + "CategoricalMeasureField": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.2.1676920531071", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "medium" + "ColumnName": "event_type" }, - "FormatConfiguration": { - "NullValueFormatConfiguration": { - "NullString": "Unknown" - } - } + "AggregationFunction": "COUNT" } } ], - "Columns": [ - { - "CategoricalDimensionField": { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677095868043", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "License" - } - } - }, + "Colors": [ { "CategoricalDimensionField": { - "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.3.1678481843276", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676920520291", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "Event Short Name" + "ColumnName": "medium" + }, + "FormatConfiguration": { + "NullValueFormatConfiguration": { + "NullString": "null" + } } } } - ], - "Values": [] + ] } }, "SortConfiguration": { - "FieldSortOptions": [] - }, - "TableOptions": { - "ColumnNamesVisibility": "HIDDEN", - "ColumnHeaderStyle": { - "FontConfiguration": { - "FontColor": "#2185D9" - }, - "HorizontalTextAlignment": "CENTER", - "BackgroundColor": "#FFFFFF", - "Border": { - "UniformBorder": { - "Style": "NONE" + "CategorySort": [ + { + "FieldSort": { + "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676920506247", + "Direction": "DESC" } } + ], + "CategoryItemsLimitConfiguration": { + "OtherCategories": "INCLUDE" }, - "RowHeaderStyle": { - "FontConfiguration": { - "FontColor": "#000000" - }, - "Border": { - "UniformBorder": { - "Style": "NONE" - } - } + "ColorItemsLimitConfiguration": { + "OtherCategories": "INCLUDE" }, - "CellStyle": { - "HorizontalTextAlignment": "CENTER", - "BackgroundColor": "#FFFFFF", - "Height": 25, - "Border": { - "SideSpecificBorder": { - "InnerVertical": { - "Style": "SOLID" + "SmallMultiplesLimitConfiguration": { + "OtherCategories": "INCLUDE" + } + }, + "Type": "LINE", + "XAxisLabelOptions": { + "AxisLabelOptions": [ + { + "CustomLabel": "Date", + "ApplyTo": { + "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676920506247", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "LocalTime" } } } - }, - "RowFieldNamesStyle": { - "FontConfiguration": { - "FontColor": "#2185D9" + ] + }, + "PrimaryYAxisDisplayOptions": { + "AxisOptions": { + "TickLabelOptions": { + "LabelOptions": { + "Visibility": "HIDDEN" + } }, - "HorizontalTextAlignment": "CENTER", - "BackgroundColor": "#FFFFFF", - "Border": { - "UniformBorder": { - "Style": "NONE" + "GridLineVisibility": "HIDDEN" + } + }, + "PrimaryYAxisLabelOptions": { + "Visibility": "HIDDEN", + "SortIconVisibility": "HIDDEN", + "AxisLabelOptions": [ + { + "CustomLabel": "Check Outs", + "ApplyTo": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.2.1676920531071", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "event_type" + } } } - }, - "RowAlternateColorOptions": { - "Status": "ENABLED", - "RowAlternateColors": [ - "#EEEEEE" - ] - } + ] }, - "TotalOptions": { - "RowTotalOptions": { - "TotalsVisibility": "HIDDEN", - "ScrollStatus": "SCROLLED" + "Legend": { + "Position": "BOTTOM" + }, + "DataLabels": { + "Visibility": "HIDDEN", + "LabelFontConfiguration": { + "FontSize": { + "Relative": "EXTRA_LARGE" + } }, - "ColumnTotalOptions": { - "TotalsVisibility": "HIDDEN" - } + "Overlap": "DISABLE_OVERLAP" }, - "FieldOptions": { - "SelectedFieldOptions": [ - { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676651221498", - "CustomLabel": "Month", - "Visibility": "VISIBLE" - }, - { - "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676651251164", - "CustomLabel": "Format", - "Visibility": "VISIBLE" - }, - { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677095868043", - "Visibility": "VISIBLE" - }, - { - "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.3.1678481843276", - "Visibility": "VISIBLE" - } - ], - "DataPathOptions": [ - { - "DataPathList": [ - { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676651221498", - "FieldValue": "LocalTime" + "Tooltip": { + "TooltipVisibility": "VISIBLE", + "SelectedTooltipType": "DETAILED", + "FieldBasedTooltip": { + "AggregationVisibility": "HIDDEN", + "TooltipTitleType": "PRIMARY_VALUE", + "TooltipFields": [ + { + "FieldTooltipItem": { + "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676920506247", + "Visibility": "VISIBLE" } - ], - "Width": "181px" - }, - { - "DataPathList": [ - { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677095868043", - "FieldValue": "Licensed", - "DataPathType": { - "PivotTableDataPathType": "COUNT_METRIC_COLUMN" - } - }, - { - "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.3.1678481843276", - "FieldValue": "Check Out", - "DataPathType": { - "PivotTableDataPathType": "COUNT_METRIC_COLUMN" - } - }, - { - "DataPathType": { - "PivotTableDataPathType": "COUNT_METRIC_COLUMN" - } + }, + { + "FieldTooltipItem": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676920520291", + "Label": "Format", + "Visibility": "VISIBLE" } - ], - "Width": "176px" - }, - { - "DataPathList": [ - { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.2.1677095868043", - "FieldValue": "Open Access", - "DataPathType": { - "PivotTableDataPathType": "COUNT_METRIC_COLUMN" - } - }, - { - "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.3.1678481843276", - "FieldValue": "Check Out", - "DataPathType": { - "PivotTableDataPathType": "COUNT_METRIC_COLUMN" - } - }, - { - "DataPathType": { - "PivotTableDataPathType": "COUNT_METRIC_COLUMN" - } + }, + { + "FieldTooltipItem": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.2.1676920531071", + "Label": "Checkouts", + "Visibility": "VISIBLE" } - ], - "Width": "137px" - } - ], - "CollapseStateOptions": [ - { - "Target": { - "FieldDataPathValues": [ - { - "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676651221498", - "FieldValue": "2023-01-01 00:00:00.000" + } + ] + } + } + }, + "Actions": [], + "ColumnHierarchies": [ + { + "DateTimeHierarchy": { + "HierarchyId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676920506247" + } + } + ] + } + }, + { + "InsightVisual": { + "VisualId": "d2ee04e2-a636-4bc0-b126-bdd577580536", + "Title": { + "Visibility": "HIDDEN", + "FormatText": { + "PlainText": "Insight" + } + }, + "Subtitle": { + "Visibility": "HIDDEN" + }, + "InsightConfiguration": { + "Computations": [ + { + "TopBottomRanked": { + "ComputationId": "dfc660fb-7e8d-45b3-b3e5-28394a461fa1", + "Name": "Top", + "Category": { + "CategoricalDimensionField": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.title.1.1677085004970", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "title" } - ] + } + }, + "Value": { + "CategoricalMeasureField": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.2.1677085013847", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "event_type" + }, + "AggregationFunction": "COUNT" + } }, - "State": "COLLAPSED" + "ResultSize": 10, + "Type": "TOP" } - ] + } + ], + "CustomNarrative": { + "Narrative": "\n \n Top Circulating Ebooks\n \n
\n
\n Top\u00a0\n \n \n Top.itemsCount\n \n \u00a0\n \n \n Top.categoryField.name\n \n s by checkout\u00a0\n \n are:\n \n \u00a0is:\n
\n \n \n \n
\n
" } }, - "Actions": [] + "Actions": [], + "DataSetIdentifier": "circulation_view" } } ], "TextBoxes": [ { - "SheetTextBoxId": "8ea6901d-58e3-4988-9607-0476463c922c", - "Content": "\n
\n \n Hourly Breakdown\n \n
\n ____________________________________________________________________________________________________________________________________________________________________________________________________\n
" - }, - { - "SheetTextBoxId": "e8d719e8-6728-40d9-b13d-63a6fb498974", - "Content": "\n \n Circulation Details\n \n" - }, - { - "SheetTextBoxId": "08c6e303-4260-4503-8b3b-334252161d82", - "Content": "\n
\n \n \n \n \n Weekly Breakdown\n \n
\n ____________________________________________________________________________________________________________________________________________________________________________________________________\n
" + "SheetTextBoxId": "16961c57-7625-4e6b-ab3e-8a5bb19a01d6", + "Content": "\n \n Historical Circulation\n \n
\n The following graphs show historical circulation year to date. To change the time frame for the data being reported below, click the dropdown arrow in the top right of the screen above this description and adjust the \"Time Frame\" settings to the time frame of interest.\n
\n Note: Updated data for the past 24 hours is loaded each evening at/around midnight Eastern time.\n
" } ], "Layouts": [ @@ -3660,90 +2883,130 @@ "GridLayout": { "Elements": [ { - "ElementId": "e8d719e8-6728-40d9-b13d-63a6fb498974", + "ElementId": "16961c57-7625-4e6b-ab3e-8a5bb19a01d6", "ElementType": "TEXT_BOX", "ColumnIndex": 0, "ColumnSpan": 36, "RowIndex": 0, - "RowSpan": 2 + "RowSpan": 3 }, { - "ElementId": "eba72d73-f723-4434-895a-2aefd7b947c2", + "ElementId": "642e5c01-0a9a-4edd-a41f-5cfa332a8180", "ElementType": "VISUAL", "ColumnIndex": 0, - "ColumnSpan": 24, - "RowIndex": 2, - "RowSpan": 14 + "ColumnSpan": 5, + "RowIndex": 3, + "RowSpan": 3 }, { - "ElementId": "b7a27855-6818-4db8-a19d-1f628caf29f4", + "ElementId": "d385dda8-d2d5-4ad0-93ac-0b4f87a4f944", "ElementType": "VISUAL", - "ColumnIndex": 24, - "ColumnSpan": 12, - "RowIndex": 2, - "RowSpan": 7 + "ColumnIndex": 6, + "ColumnSpan": 5, + "RowIndex": 3, + "RowSpan": 3 }, { - "ElementId": "28b665e7-6c3d-4a4d-ab09-b366e8423c11", + "ElementId": "c4fdbbfd-9157-49ae-8392-e10e04523168", "ElementType": "VISUAL", - "ColumnIndex": 24, - "ColumnSpan": 12, - "RowIndex": 9, - "RowSpan": 7 + "ColumnIndex": 12, + "ColumnSpan": 5, + "RowIndex": 3, + "RowSpan": 3 }, { - "ElementId": "08c6e303-4260-4503-8b3b-334252161d82", - "ElementType": "TEXT_BOX", + "ElementId": "f1a6cdab-83a4-4e55-8eab-3741f744e2e4", + "ElementType": "VISUAL", + "ColumnIndex": 18, + "ColumnSpan": 6, + "RowIndex": 3, + "RowSpan": 3 + }, + { + "ElementId": "0aa45d09-a569-44d8-a725-d97c03462168", + "ElementType": "VISUAL", "ColumnIndex": 0, - "ColumnSpan": 36, - "RowIndex": 16, + "ColumnSpan": 5, + "RowIndex": 6, + "RowSpan": 3 + }, + { + "ElementId": "139d9929-101b-48c7-b141-1c4e9cb3f0d0", + "ElementType": "VISUAL", + "ColumnIndex": 6, + "ColumnSpan": 5, + "RowIndex": 6, + "RowSpan": 3 + }, + { + "ElementId": "8ac2b6bf-cc0e-445a-9af8-334defe68c55", + "ElementType": "VISUAL", + "ColumnIndex": 12, + "ColumnSpan": 5, + "RowIndex": 6, + "RowSpan": 3 + }, + { + "ElementId": "3c2c39db-6909-4f70-9e41-c67c2420a9c3", + "ElementType": "VISUAL", + "ColumnIndex": 18, + "ColumnSpan": 6, + "RowIndex": 6, "RowSpan": 3 }, { - "ElementId": "9fe69450-8395-4345-96c2-a11635454852", + "ElementId": "dae76451-f3ac-438b-af0d-781be430f547", "ElementType": "VISUAL", - "ColumnIndex": 1, - "ColumnSpan": 23, - "RowIndex": 19, + "ColumnIndex": 0, + "ColumnSpan": 36, + "RowIndex": 9, "RowSpan": 14 }, { - "ElementId": "112075dc-0e4f-41cb-8910-bf9852d1d81f", + "ElementId": "80484134-a0fb-4ed9-a1a3-398a45c73ed7", "ElementType": "VISUAL", - "ColumnIndex": 24, - "ColumnSpan": 12, - "RowIndex": 19, + "ColumnIndex": 0, + "ColumnSpan": 8, + "RowIndex": 23, "RowSpan": 7 }, { - "ElementId": "a6b76673-2e71-4e02-9225-20c02ed9e933", + "ElementId": "a7bbfb86-f675-4808-b88f-e6d96d8e996b", "ElementType": "VISUAL", - "ColumnIndex": 24, - "ColumnSpan": 12, - "RowIndex": 26, - "RowSpan": 7 + "ColumnIndex": 8, + "ColumnSpan": 28, + "RowIndex": 23, + "RowSpan": 14 }, { - "ElementId": "8ea6901d-58e3-4988-9607-0476463c922c", - "ElementType": "TEXT_BOX", + "ElementId": "d4eee95d-393d-43ef-8042-c04aa9891d52", + "ElementType": "VISUAL", "ColumnIndex": 0, - "ColumnSpan": 36, - "RowIndex": 33, - "RowSpan": 3 + "ColumnSpan": 8, + "RowIndex": 30, + "RowSpan": 7 }, { - "ElementId": "9dcded04-c08a-4bfe-a579-429985f03418", + "ElementId": "d2ee04e2-a636-4bc0-b126-bdd577580536", "ElementType": "VISUAL", "ColumnIndex": 0, - "ColumnSpan": 35, - "RowIndex": 36, - "RowSpan": 12 + "ColumnSpan": 16, + "RowIndex": 37, + "RowSpan": 8 + }, + { + "ElementId": "89171b34-0956-4b6f-878a-95966befbb22", + "ElementType": "VISUAL", + "ColumnIndex": 20, + "ColumnSpan": 16, + "RowIndex": 37, + "RowSpan": 8 } ], "CanvasSizeOptions": { "ScreenCanvasSizeOptions": { "ResizeOption": "FIXED", - "OptimizedViewPortWidth": "1280px" + "OptimizedViewPortWidth": "1600px" } } } @@ -3756,25 +3019,17 @@ "GridLayout": { "Elements": [ { - "ElementId": "f978c7c2-7393-43a7-a272-4a48bccf9ba1", - "ElementType": "PARAMETER_CONTROL", - "ColumnIndex": 0, - "ColumnSpan": 2, - "RowIndex": 0, - "RowSpan": 1 - }, - { - "ElementId": "a110f7d6-52ef-44c3-9f78-5f8d9ab8df00", + "ElementId": "924773a9-f66a-41d4-845e-30b27a8f3854", "ElementType": "FILTER_CONTROL", - "ColumnIndex": 2, - "ColumnSpan": 3, + "ColumnIndex": 0, + "ColumnSpan": 4, "RowIndex": 0, "RowSpan": 1 }, { - "ElementId": "d5b0c372-abe5-4e81-a321-dc6045120923", + "ElementId": "0fd6ade1-afec-4976-8415-e87a6f20001d", "ElementType": "FILTER_CONTROL", - "ColumnIndex": 5, + "ColumnIndex": 4, "ColumnSpan": 3, "RowIndex": 0, "RowSpan": 1 @@ -3787,14 +3042,14 @@ "ContentType": "INTERACTIVE" }, { - "SheetId": "59738200-c698-4470-8d60-cd8d0d55e124", - "Name": "Loaned Title Use", + "SheetId": "d3e94719-78fa-4373-9238-fadfd54cd36d", + "Name": "Collection Circulation Details", "FilterControls": [ { - "DateTimePicker": { - "FilterControlId": "84bccb96-e2eb-49fd-b043-e4a19a8c7b76", - "Title": "Date Range", - "SourceFilterId": "2e7ed53b-2d4d-4be7-9d4a-4fa7063f4113", + "RelativeDateTime": { + "FilterControlId": "a110f7d6-52ef-44c3-9f78-5f8d9ab8df00", + "Title": "Time Frame:", + "SourceFilterId": "01049847-22f7-4ac3-8f9e-73d0a50bd022", "DisplayOptions": { "TitleOptions": { "Visibility": "VISIBLE", @@ -3804,19 +3059,18 @@ } } }, - "DateTimeFormat": "YYYY/MM/DD", + "DateTimeFormat": "MM/DD/YYYY", "InfoIconLabelOptions": { "Visibility": "HIDDEN" } - }, - "Type": "DATE_RANGE" + } } }, { "Dropdown": { - "FilterControlId": "6b2c33b3-1022-4f57-a1a0-f13f5898bc7c", - "Title": "License Type", - "SourceFilterId": "80825dbe-f229-4723-824f-06d44bc4f737", + "FilterControlId": "c66fe5da-063f-4f87-9807-75803bed4166", + "Title": "Select Library/Libraries:", + "SourceFilterId": "8ba6548e-65c0-4325-ac6d-e60a0a14ea23", "DisplayOptions": { "SelectAllOptions": { "Visibility": "VISIBLE" @@ -3835,767 +3089,2109 @@ }, "Type": "MULTI_SELECT" } - }, + } + ], + "Visuals": [ { - "Dropdown": { - "FilterControlId": "0ea4df93-d10f-45ec-af1d-343b0ffe754d", - "Title": "Format", - "SourceFilterId": "445981f5-637b-4e78-97ed-8d2826f94f0f", - "DisplayOptions": { - "SelectAllOptions": { - "Visibility": "VISIBLE" - }, - "TitleOptions": { - "Visibility": "VISIBLE", - "FontConfiguration": { - "FontSize": { - "Relative": "MEDIUM" - } - } - }, - "InfoIconLabelOptions": { - "Visibility": "HIDDEN" + "PieChartVisual": { + "VisualId": "0c9b3337-9dad-4501-8306-d0071e86c9d7", + "Title": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n \n Checkouts By Genre\n \n" } }, - "Type": "MULTI_SELECT" - } - }, - { - "Dropdown": { - "FilterControlId": "ec459f8c-6f49-47d5-be56-000248107618", - "Title": "Collection", - "SourceFilterId": "784533ed-2efa-4ea8-8df3-096d07276a76", - "DisplayOptions": { - "SelectAllOptions": { - "Visibility": "VISIBLE" + "Subtitle": { + "Visibility": "VISIBLE" + }, + "ChartConfiguration": { + "FieldWells": { + "PieChartAggregatedFieldWells": { + "Category": [ + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.genre.1.1710427680003", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "genre" + } + } + } + ], + "Values": [ + { + "CategoricalMeasureField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.1.1710426654883", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "event_type" + }, + "AggregationFunction": "COUNT" + } + } + ] + } }, - "TitleOptions": { - "Visibility": "VISIBLE", - "FontConfiguration": { - "FontSize": { - "Relative": "MEDIUM" + "SortConfiguration": { + "CategorySort": [ + { + "FieldSort": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.1.1710426654883", + "Direction": "DESC" + } } + ], + "CategoryItemsLimit": { + "OtherCategories": "INCLUDE" + }, + "SmallMultiplesLimitConfiguration": { + "OtherCategories": "INCLUDE" } }, - "InfoIconLabelOptions": { - "Visibility": "HIDDEN" - } - }, - "Type": "MULTI_SELECT" - } - }, - { - "Dropdown": { - "FilterControlId": "b07aefc4-a0ad-4399-a6f3-93008a1ac836", - "Title": "Title", - "SourceFilterId": "6028293b-b051-4fc4-8f75-5a3b75fcfc3e", - "DisplayOptions": { - "SelectAllOptions": { - "Visibility": "VISIBLE" + "DonutOptions": { + "ArcOptions": { + "ArcThickness": "WHOLE" + } }, - "TitleOptions": { + "Legend": { + "Position": "RIGHT", + "Width": "308px" + }, + "DataLabels": { "Visibility": "VISIBLE", - "FontConfiguration": { + "MeasureLabelVisibility": "VISIBLE", + "Position": "OUTSIDE", + "LabelFontConfiguration": { "FontSize": { - "Relative": "MEDIUM" + "Relative": "LARGE" } - } + }, + "Overlap": "DISABLE_OVERLAP" }, - "InfoIconLabelOptions": { - "Visibility": "HIDDEN" + "Tooltip": { + "TooltipVisibility": "VISIBLE", + "SelectedTooltipType": "DETAILED", + "FieldBasedTooltip": { + "AggregationVisibility": "HIDDEN", + "TooltipTitleType": "PRIMARY_VALUE", + "TooltipFields": [ + { + "FieldTooltipItem": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.1.1710426654883", + "Visibility": "VISIBLE" + } + }, + { + "FieldTooltipItem": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.genre.1.1710427680003", + "Visibility": "VISIBLE" + } + } + ] + } } }, - "Type": "MULTI_SELECT" + "Actions": [], + "ColumnHierarchies": [] } - } - ], - "Visuals": [ + }, { - "PivotTableVisual": { - "VisualId": "3391b017-8612-47a0-a446-16fb3a0018ea", + "PieChartVisual": { + "VisualId": "41934a89-de94-44ce-8cc3-e7ed4c6db2c6", "Title": { "Visibility": "VISIBLE", "FormatText": { - "RichText": "\n \n Check Outs and Holds by Title\n \n" + "RichText": "\n \n Checkouts By Language\n \n" } }, "Subtitle": { - "Visibility": "HIDDEN" + "Visibility": "VISIBLE" }, "ChartConfiguration": { "FieldWells": { - "PivotTableAggregatedFieldWells": { - "Rows": [ + "PieChartAggregatedFieldWells": { + "Category": [ { "CategoricalDimensionField": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678473924318", + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.language.1.1710427171507", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "title" + "ColumnName": "language" } } } ], - "Columns": [ + "Values": [ { - "CategoricalDimensionField": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.medium.3.1678717380031", + "CategoricalMeasureField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.0.1710427149484", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "medium" + "ColumnName": "event_type" }, - "FormatConfiguration": { - "NullValueFormatConfiguration": { - "NullString": "null" - } - } + "AggregationFunction": "COUNT" + } + } + ] + } + }, + "SortConfiguration": { + "CategorySort": [ + { + "FieldSort": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.0.1710427149484", + "Direction": "DESC" + } + } + ], + "CategoryItemsLimit": { + "OtherCategories": "INCLUDE" + }, + "SmallMultiplesLimitConfiguration": { + "OtherCategories": "INCLUDE" + } + }, + "DonutOptions": { + "ArcOptions": { + "ArcThickness": "WHOLE" + } + }, + "Legend": { + "Position": "RIGHT", + "Width": "199px" + }, + "DataLabels": { + "Visibility": "VISIBLE", + "MeasureLabelVisibility": "VISIBLE", + "Position": "OUTSIDE", + "LabelFontConfiguration": { + "FontSize": { + "Relative": "LARGE" + } + }, + "Overlap": "DISABLE_OVERLAP" + }, + "Tooltip": { + "TooltipVisibility": "VISIBLE", + "SelectedTooltipType": "DETAILED", + "FieldBasedTooltip": { + "AggregationVisibility": "HIDDEN", + "TooltipTitleType": "PRIMARY_VALUE", + "TooltipFields": [ + { + "FieldTooltipItem": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.0.1710427149484", + "Visibility": "VISIBLE" } }, + { + "FieldTooltipItem": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.language.1.1710427171507", + "Visibility": "VISIBLE" + } + } + ] + } + } + }, + "Actions": [], + "ColumnHierarchies": [] + } + }, + { + "BarChartVisual": { + "VisualId": "09402e88-46e9-423a-9cb0-5390786ea38b", + "Title": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n \n Checkouts By Collection Source\n \n" + } + }, + "Subtitle": { + "Visibility": "VISIBLE" + }, + "ChartConfiguration": { + "FieldWells": { + "BarChartAggregatedFieldWells": { + "Category": [ { "CategoricalDimensionField": { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.1.1678473947939", + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.collection_name.1.1710426923354", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "License" + "ColumnName": "collection_name" } } - }, + } + ], + "Values": [ { - "CategoricalDimensionField": { - "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.2.1678473961994", + "CategoricalMeasureField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.1.1710426654883", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "Event Short Name" - } + "ColumnName": "event_type" + }, + "AggregationFunction": "COUNT" } } ], - "Values": [] + "Colors": [] } }, "SortConfiguration": { - "FieldSortOptions": [ + "CategorySort": [ { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.medium.3.1678717380031", - "SortBy": { - "Field": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.medium.3.1678717380031", - "Direction": "ASC" - } + "FieldSort": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.1.1710426654883", + "Direction": "DESC" } } - ] + ], + "CategoryItemsLimit": { + "OtherCategories": "INCLUDE" + }, + "ColorItemsLimit": { + "OtherCategories": "INCLUDE" + }, + "SmallMultiplesLimitConfiguration": { + "OtherCategories": "INCLUDE" + } }, - "TableOptions": { - "SingleMetricVisibility": "HIDDEN", - "ToggleButtonsVisibility": "HIDDEN", - "ColumnHeaderStyle": { - "FontConfiguration": { - "FontSize": { - "Relative": "LARGE" - }, - "FontColor": "#2185D9" - }, - "HorizontalTextAlignment": "CENTER", - "Height": 27, - "Border": { - "SideSpecificBorder": { - "InnerVertical": { - "Style": "SOLID" - } + "Orientation": "HORIZONTAL", + "BarsArrangement": "STACKED", + "CategoryAxis": { + "ScrollbarOptions": { + "VisibleRange": { + "PercentRange": { + "From": 89.99999999999999, + "To": 100.0 } } }, - "RowHeaderStyle": { - "HorizontalTextAlignment": "LEFT", - "Border": { - "UniformBorder": { - "Style": "NONE" - } + "AxisOffset": "22px" + }, + "ValueAxis": { + "AxisOffset": "159px" + }, + "Legend": { + "Position": "BOTTOM" + }, + "DataLabels": { + "Visibility": "VISIBLE", + "MeasureLabelVisibility": "VISIBLE", + "LabelFontConfiguration": { + "FontSize": { + "Relative": "LARGE" } }, - "CellStyle": { - "FontConfiguration": { - "FontSize": { - "Relative": "LARGE" - } - }, - "HorizontalTextAlignment": "CENTER", - "Height": 23 - }, - "RowFieldNamesStyle": { - "FontConfiguration": { - "FontSize": { - "Relative": "LARGE" + "Overlap": "DISABLE_OVERLAP" + }, + "Tooltip": { + "TooltipVisibility": "VISIBLE", + "SelectedTooltipType": "DETAILED", + "FieldBasedTooltip": { + "AggregationVisibility": "HIDDEN", + "TooltipTitleType": "PRIMARY_VALUE", + "TooltipFields": [ + { + "FieldTooltipItem": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.1.1710426654883", + "Visibility": "VISIBLE" + } }, - "FontColor": "#2185D9" - }, - "HorizontalTextAlignment": "CENTER", - "Height": 27, - "Border": { - "SideSpecificBorder": { - "InnerVertical": { - "Style": "SOLID" + { + "FieldTooltipItem": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.collection_name.1.1710426923354", + "Visibility": "VISIBLE" } } - } - }, - "RowsLayout": "TABULAR" - }, - "FieldOptions": { - "SelectedFieldOptions": [ - { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678473924318", - "CustomLabel": "Title", - "Visibility": "VISIBLE" - }, - { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.medium.3.1678717380031", - "Visibility": "VISIBLE" - }, - { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.1.1678473947939", - "Visibility": "VISIBLE" - }, - { - "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.2.1678473961994", - "CustomLabel": "Circulation Event", - "Visibility": "VISIBLE" - } - ], - "DataPathOptions": [ - { - "DataPathList": [ - { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678473924318", - "FieldValue": "title" - } - ], - "Width": "399px" - } - ] + ] + } } }, - "Actions": [] + "Actions": [], + "ColumnHierarchies": [] } - } - ], - "TextBoxes": [ - { - "SheetTextBoxId": "9cff0898-309b-4533-98a0-c589d37617d4", - "Content": "\n \u00a0\n \n Loaned Title Use\n \n" - } - ], - "Layouts": [ + }, { - "Configuration": { - "GridLayout": { - "Elements": [ - { - "ElementId": "9cff0898-309b-4533-98a0-c589d37617d4", - "ElementType": "TEXT_BOX", - "ColumnIndex": 0, - "ColumnSpan": 32, - "RowIndex": 0, - "RowSpan": 2 - }, - { - "ElementId": "3391b017-8612-47a0-a446-16fb3a0018ea", - "ElementType": "VISUAL", - "ColumnIndex": 0, - "ColumnSpan": 32, - "RowIndex": 2, - "RowSpan": 20 - } - ], - "CanvasSizeOptions": { - "ScreenCanvasSizeOptions": { - "ResizeOption": "FIXED", - "OptimizedViewPortWidth": "1600px" - } + "PieChartVisual": { + "VisualId": "ffb7fb85-bf46-4f25-abd9-53da8aa741ef", + "Title": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n \n Checkouts By Audience\n \n" } - } - } - } - ], - "SheetControlLayouts": [ - { - "Configuration": { - "GridLayout": { - "Elements": [ - { - "ElementId": "b07aefc4-a0ad-4399-a6f3-93008a1ac836", - "ElementType": "FILTER_CONTROL", - "ColumnIndex": 0, - "ColumnSpan": 3, - "RowIndex": 0, - "RowSpan": 1 - }, - { - "ElementId": "6b2c33b3-1022-4f57-a1a0-f13f5898bc7c", - "ElementType": "FILTER_CONTROL", - "ColumnIndex": 3, - "ColumnSpan": 2, - "RowIndex": 0, - "RowSpan": 1 - }, - { - "ElementId": "0ea4df93-d10f-45ec-af1d-343b0ffe754d", - "ElementType": "FILTER_CONTROL", - "ColumnIndex": 5, - "ColumnSpan": 2, - "RowIndex": 0, - "RowSpan": 1 - }, - { - "ElementId": "84bccb96-e2eb-49fd-b043-e4a19a8c7b76", - "ElementType": "FILTER_CONTROL", - "ColumnIndex": 7, - "ColumnSpan": 4, - "RowIndex": 0, - "RowSpan": 1 - }, - { - "ElementId": "ec459f8c-6f49-47d5-be56-000248107618", - "ElementType": "FILTER_CONTROL", - "ColumnIndex": 0, - "ColumnSpan": 3, - "RowIndex": 1, - "RowSpan": 1 + }, + "Subtitle": { + "Visibility": "VISIBLE" + }, + "ChartConfiguration": { + "FieldWells": { + "PieChartAggregatedFieldWells": { + "Category": [ + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.audience.1.1710426882073", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "audience" + } + } + } + ], + "Values": [ + { + "CategoricalMeasureField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.1.1710426654883", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "event_type" + }, + "AggregationFunction": "COUNT" + } + } + ] } - ] - } - } - } - ], - "ContentType": "INTERACTIVE" - }, - { - "SheetId": "7eed6ff1-8206-4ad5-8fa2-631286ddb4cc", - "Name": "CSV Raw Data Report", - "FilterControls": [ - { - "DateTimePicker": { - "FilterControlId": "2fcbbfbb-46ae-4a37-af4b-503caeadd5e2", - "Title": "Dates", - "SourceFilterId": "3a03538b-8204-49f2-bf63-18c3e4353c2c", - "DisplayOptions": { - "TitleOptions": { - "Visibility": "VISIBLE", - "FontConfiguration": { - "FontSize": { - "Relative": "MEDIUM" + }, + "SortConfiguration": { + "CategorySort": [ + { + "FieldSort": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.1.1710426654883", + "Direction": "DESC" + } } + ], + "CategoryItemsLimit": { + "OtherCategories": "INCLUDE" + }, + "SmallMultiplesLimitConfiguration": { + "OtherCategories": "INCLUDE" } }, - "DateTimeFormat": "YYYY/MM/DD HH:mm:ss", - "InfoIconLabelOptions": { - "Visibility": "HIDDEN" - } - }, - "Type": "DATE_RANGE" - } - }, - { - "Dropdown": { - "FilterControlId": "bada69b8-cba5-42a6-9b19-6cdc598b7856", - "Title": "Audience", - "SourceFilterId": "4c4a93b1-dc82-403a-b59e-18a461300f15", - "DisplayOptions": { - "SelectAllOptions": { - "Visibility": "VISIBLE" + "DonutOptions": { + "ArcOptions": { + "ArcThickness": "WHOLE" + } }, - "TitleOptions": { + "Legend": { "Visibility": "VISIBLE", - "FontConfiguration": { + "Position": "RIGHT", + "Width": "231px" + }, + "DataLabels": { + "Visibility": "VISIBLE", + "MeasureLabelVisibility": "VISIBLE", + "Position": "OUTSIDE", + "LabelFontConfiguration": { "FontSize": { - "Relative": "MEDIUM" + "Relative": "LARGE" } - } + }, + "Overlap": "DISABLE_OVERLAP" }, - "InfoIconLabelOptions": { - "Visibility": "HIDDEN" - } - }, - "Type": "MULTI_SELECT" - } - }, - { - "Dropdown": { - "FilterControlId": "bbcbec4e-1fd2-4f93-9dae-a3f952a52bd4", - "Title": "Author", - "SourceFilterId": "d721b535-8e71-469d-b18d-ae047630abb3", - "DisplayOptions": { - "SelectAllOptions": { - "Visibility": "VISIBLE" - }, - "TitleOptions": { - "Visibility": "VISIBLE", - "FontConfiguration": { - "FontSize": { - "Relative": "MEDIUM" - } - } - }, - "InfoIconLabelOptions": { - "Visibility": "HIDDEN" - } - }, - "Type": "MULTI_SELECT" - } - }, - { - "Dropdown": { - "FilterControlId": "7aea1830-c5c4-4b61-9aa3-b2976731ebf9", - "Title": "Collection", - "SourceFilterId": "2810c06d-055b-427c-b047-9d2f6a0164b8", - "DisplayOptions": { - "SelectAllOptions": { - "Visibility": "VISIBLE" - }, - "TitleOptions": { - "Visibility": "VISIBLE", - "FontConfiguration": { - "FontSize": { - "Relative": "MEDIUM" - } - } - }, - "InfoIconLabelOptions": { - "Visibility": "HIDDEN" - } - }, - "Type": "MULTI_SELECT" - } - }, - { - "Dropdown": { - "FilterControlId": "14005b24-32bf-47aa-8e8f-9c858ef02ad6", - "Title": "Distributor", - "SourceFilterId": "a199fae1-68d5-47d2-9143-a3820ed9da80", - "DisplayOptions": { - "SelectAllOptions": { - "Visibility": "VISIBLE" - }, - "TitleOptions": { - "Visibility": "VISIBLE", - "FontConfiguration": { - "FontSize": { - "Relative": "MEDIUM" - } - } - }, - "InfoIconLabelOptions": { - "Visibility": "HIDDEN" - } - }, - "Type": "MULTI_SELECT" - } - }, - { - "Dropdown": { - "FilterControlId": "fedceaa1-28f9-4f08-888d-60764270a600", - "Title": "Language", - "SourceFilterId": "9e01f07e-2adb-416b-8231-3e18fbae26cd", - "DisplayOptions": { - "SelectAllOptions": { - "Visibility": "VISIBLE" - }, - "TitleOptions": { - "Visibility": "VISIBLE", - "FontConfiguration": { - "FontSize": { - "Relative": "MEDIUM" - } - } - }, - "InfoIconLabelOptions": { - "Visibility": "HIDDEN" - } - }, - "Type": "MULTI_SELECT" - } - }, - { - "Dropdown": { - "FilterControlId": "d3030597-289d-430e-b006-f63cf452d378", - "Title": "Library", - "SourceFilterId": "2a54c661-7b10-447e-b29e-a10f5879cee7", - "DisplayOptions": { - "SelectAllOptions": { - "Visibility": "VISIBLE" - }, - "TitleOptions": { - "Visibility": "VISIBLE", - "FontConfiguration": { - "FontSize": { - "Relative": "MEDIUM" - } - } - }, - "InfoIconLabelOptions": { - "Visibility": "HIDDEN" - } - }, - "Type": "MULTI_SELECT" - } - }, - { - "Dropdown": { - "FilterControlId": "f7b7d78c-6227-43f1-a3cc-5a2b0f56daa8", - "Title": "License Type", - "SourceFilterId": "b2df559d-25ad-40b1-807b-db61d403bd97", - "DisplayOptions": { - "SelectAllOptions": { - "Visibility": "VISIBLE" - }, - "TitleOptions": { - "Visibility": "VISIBLE", - "FontConfiguration": { - "FontSize": { - "Relative": "MEDIUM" - } - } - }, - "InfoIconLabelOptions": { - "Visibility": "HIDDEN" - } - }, - "Type": "MULTI_SELECT" - } - }, - { - "Dropdown": { - "FilterControlId": "2bc82b83-b4da-45ed-9db8-13d9a26f87f9", - "Title": "Title", - "SourceFilterId": "c561d8c2-87b8-41c1-9fd0-ad63299281d0", - "DisplayOptions": { - "SelectAllOptions": { - "Visibility": "VISIBLE" - }, - "TitleOptions": { - "Visibility": "VISIBLE", - "FontConfiguration": { - "FontSize": { - "Relative": "MEDIUM" - } + "Tooltip": { + "TooltipVisibility": "VISIBLE", + "SelectedTooltipType": "DETAILED", + "FieldBasedTooltip": { + "AggregationVisibility": "HIDDEN", + "TooltipTitleType": "PRIMARY_VALUE", + "TooltipFields": [ + { + "FieldTooltipItem": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.1.1710426654883", + "Visibility": "VISIBLE" + } + }, + { + "FieldTooltipItem": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.audience.1.1710426882073", + "Visibility": "VISIBLE" + } + } + ] } - }, - "InfoIconLabelOptions": { - "Visibility": "HIDDEN" } }, - "Type": "MULTI_SELECT" + "Actions": [], + "ColumnHierarchies": [] } }, { - "Dropdown": { - "FilterControlId": "fd52ba6d-4632-4e1c-b5f0-c23ab33c8eca", - "Title": "Format", - "SourceFilterId": "5e507833-7683-49cf-9bef-eaa57a67916f", - "DisplayOptions": { - "SelectAllOptions": { - "Visibility": "VISIBLE" - }, - "TitleOptions": { - "Visibility": "VISIBLE", - "FontConfiguration": { - "FontSize": { - "Relative": "MEDIUM" - } - } - }, - "InfoIconLabelOptions": { - "Visibility": "HIDDEN" - } - }, - "Type": "MULTI_SELECT" - } - } - ], - "Visuals": [ - { - "TableVisual": { - "VisualId": "379eac08-b1e1-40c0-8e8a-bd2c4205ddd7", + "LineChartVisual": { + "VisualId": "244f9e06-857f-4113-a603-82c461fefa0c", "Title": { - "Visibility": "HIDDEN" + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n \n Monthly Checkouts\n \n" + } }, "Subtitle": { - "Visibility": "HIDDEN" + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n By Format\n" + } }, "ChartConfiguration": { "FieldWells": { - "TableAggregatedFieldWells": { - "GroupBy": [ + "LineChartAggregatedFieldWells": { + "Category": [ { "DateDimensionField": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.time_stamp.2.1706905943721", + "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "time_stamp" + "ColumnName": "LocalTime" + }, + "DateGranularity": "MONTH", + "HierarchyId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", + "FormatConfiguration": { + "DateTimeFormat": "MMM D, YYYY", + "NullValueFormatConfiguration": { + "NullString": "null" + } } } - }, + } + ], + "Values": [ { - "CategoricalDimensionField": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.12.1707332214886", + "CategoricalMeasureField": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", "Column": { "DataSetIdentifier": "circulation_view", "ColumnName": "event_type" - } - } - }, - { - "CategoricalDimensionField": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.library_name.6.1706906047497", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "library_name" - } + }, + "AggregationFunction": "COUNT" } - }, + } + ], + "Colors": [ { "CategoricalDimensionField": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.collection_name.4.1706905995146", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.2.1676650091730", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "collection_name" + "ColumnName": "medium" } } - }, - { - "CategoricalDimensionField": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.distributor.5.1706906005295", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "distributor" - } - } - }, - { - "CategoricalDimensionField": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.1.1706905451211", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "title" - } - } - }, - { - "CategoricalDimensionField": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.author.1.1706905911541", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "author" - } + } + ] + } + }, + "SortConfiguration": { + "CategorySort": [ + { + "FieldSort": { + "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", + "Direction": "DESC" + } + } + ], + "CategoryItemsLimitConfiguration": { + "OtherCategories": "INCLUDE" + }, + "ColorItemsLimitConfiguration": { + "OtherCategories": "INCLUDE" + }, + "SmallMultiplesLimitConfiguration": { + "OtherCategories": "INCLUDE" + } + }, + "Type": "LINE", + "PrimaryYAxisDisplayOptions": { + "AxisOptions": { + "TickLabelOptions": { + "LabelOptions": { + "Visibility": "VISIBLE" + } + }, + "GridLineVisibility": "HIDDEN" + } + }, + "PrimaryYAxisLabelOptions": { + "SortIconVisibility": "HIDDEN", + "AxisLabelOptions": [ + { + "CustomLabel": "Check Outs", + "ApplyTo": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "event_type" } - }, + } + } + ] + }, + "DataLabels": { + "Visibility": "HIDDEN", + "Overlap": "DISABLE_OVERLAP" + }, + "Tooltip": { + "TooltipVisibility": "VISIBLE", + "SelectedTooltipType": "DETAILED", + "FieldBasedTooltip": { + "AggregationVisibility": "HIDDEN", + "TooltipTitleType": "PRIMARY_VALUE", + "TooltipFields": [ { - "CategoricalDimensionField": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.publisher.7.1706906076591", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "publisher" - } + "FieldTooltipItem": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", + "Label": "Check Outs", + "Visibility": "VISIBLE" } }, { - "CategoricalDimensionField": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.identifier.8.1706906127812", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "identifier" - } + "FieldTooltipItem": { + "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", + "Visibility": "VISIBLE" } }, { - "CategoricalDimensionField": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.genre.10.1706906142438", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "genre" - } + "FieldTooltipItem": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.2.1676650091730", + "Visibility": "VISIBLE" } - }, + } + ] + } + } + }, + "Actions": [], + "ColumnHierarchies": [ + { + "DateTimeHierarchy": { + "HierarchyId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004" + } + } + ] + } + }, + { + "LineChartVisual": { + "VisualId": "c8b8842d-dddd-44a8-b0f4-b70786151aee", + "Title": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n \n Monthly Holds\n \n" + } + }, + "Subtitle": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n By Format\n" + } + }, + "ChartConfiguration": { + "FieldWells": { + "LineChartAggregatedFieldWells": { + "Category": [ { - "CategoricalDimensionField": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.audience.11.1706906374916", + "DateDimensionField": { + "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "audience" + "ColumnName": "LocalTime" + }, + "DateGranularity": "MONTH", + "HierarchyId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", + "FormatConfiguration": { + "DateTimeFormat": "MMM D, YYYY", + "NullValueFormatConfiguration": { + "NullString": "null" + } } } - }, + } + ], + "Values": [ { - "CategoricalDimensionField": { - "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.12.1706906409867", + "CategoricalMeasureField": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "License" - } + "ColumnName": "event_type" + }, + "AggregationFunction": "COUNT" } - }, + } + ], + "Colors": [ { "CategoricalDimensionField": { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.medium.12.1706906435576", + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.2.1676650091730", "Column": { "DataSetIdentifier": "circulation_view", "ColumnName": "medium" } } } - ], - "Values": [] + ] } }, - "SortConfiguration": {}, - "TableOptions": { - "HeaderStyle": { - "TextWrap": "WRAP", - "Height": 25 + "SortConfiguration": { + "CategorySort": [ + { + "FieldSort": { + "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", + "Direction": "DESC" + } + } + ], + "CategoryItemsLimitConfiguration": { + "OtherCategories": "INCLUDE" }, - "CellStyle": { - "Height": 25 + "ColorItemsLimitConfiguration": { + "OtherCategories": "INCLUDE" }, - "RowAlternateColorOptions": { - "Status": "DISABLED", - "UsePrimaryBackgroundColor": "ENABLED" + "SmallMultiplesLimitConfiguration": { + "OtherCategories": "INCLUDE" } }, - "FieldOptions": { - "SelectedFieldOptions": [ - { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.collection_name.4.1706905995146", - "Width": "211px" - }, - { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.1.1706905451211", - "Width": "368px" - }, - { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.author.1.1706905911541", - "Width": "299px" - }, - { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.publisher.7.1706906076591", - "Width": "183px" + "Type": "LINE", + "XAxisDisplayOptions": { + "AxisLineVisibility": "VISIBLE" + }, + "PrimaryYAxisDisplayOptions": { + "AxisOptions": { + "TickLabelOptions": { + "LabelOptions": { + "Visibility": "VISIBLE" + } }, + "GridLineVisibility": "HIDDEN" + } + }, + "PrimaryYAxisLabelOptions": { + "SortIconVisibility": "HIDDEN", + "AxisLabelOptions": [ { - "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.genre.10.1706906142438", - "Width": "274px" + "CustomLabel": "Check Outs", + "ApplyTo": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "event_type" + } + } } - ], - "Order": [] + ] + }, + "DataLabels": { + "Visibility": "HIDDEN", + "Overlap": "DISABLE_OVERLAP" + }, + "Tooltip": { + "TooltipVisibility": "VISIBLE", + "SelectedTooltipType": "DETAILED", + "FieldBasedTooltip": { + "AggregationVisibility": "HIDDEN", + "TooltipTitleType": "PRIMARY_VALUE", + "TooltipFields": [ + { + "FieldTooltipItem": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.event_type.0.1676572831255", + "Label": "Check Outs", + "Visibility": "VISIBLE" + } + }, + { + "FieldTooltipItem": { + "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004", + "Visibility": "VISIBLE" + } + }, + { + "FieldTooltipItem": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.2.1676650091730", + "Visibility": "VISIBLE" + } + } + ] + } } }, - "Actions": [] - } - } + "Actions": [], + "ColumnHierarchies": [ + { + "DateTimeHierarchy": { + "HierarchyId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.4.1676649243004" + } + } + ] + } + }, + { + "PivotTableVisual": { + "VisualId": "3f8b4ace-958f-4c9c-9f50-fc357ef72abb", + "Title": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n \n Monthly Circulation Events\n \n" + } + }, + "Subtitle": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n By Format\n" + } + }, + "ChartConfiguration": { + "FieldWells": { + "PivotTableAggregatedFieldWells": { + "Rows": [ + { + "DateDimensionField": { + "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676651221498", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "LocalTime" + }, + "DateGranularity": "MONTH" + } + }, + { + "CategoricalDimensionField": { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676651251164", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "medium" + }, + "FormatConfiguration": { + "NullValueFormatConfiguration": { + "NullString": "Unknown" + } + } + } + } + ], + "Columns": [ + { + "CategoricalDimensionField": { + "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.3.1678481843276", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "Event Short Name" + } + } + } + ], + "Values": [] + } + }, + "SortConfiguration": { + "FieldSortOptions": [] + }, + "TableOptions": { + "ColumnNamesVisibility": "HIDDEN", + "ColumnHeaderStyle": { + "FontConfiguration": { + "FontSize": { + "Relative": "EXTRA_LARGE" + }, + "FontColor": "#2185D9" + }, + "HorizontalTextAlignment": "CENTER", + "BackgroundColor": "#FFFFFF", + "Border": { + "UniformBorder": { + "Style": "NONE" + } + } + }, + "RowHeaderStyle": { + "FontConfiguration": { + "FontSize": { + "Relative": "EXTRA_LARGE" + }, + "FontColor": "#000000" + }, + "Border": { + "UniformBorder": { + "Style": "NONE" + } + } + }, + "CellStyle": { + "FontConfiguration": { + "FontSize": { + "Relative": "EXTRA_LARGE" + } + }, + "HorizontalTextAlignment": "CENTER", + "BackgroundColor": "#FFFFFF", + "Height": 25, + "Border": { + "SideSpecificBorder": { + "InnerVertical": { + "Style": "SOLID" + } + } + } + }, + "RowFieldNamesStyle": { + "FontConfiguration": { + "FontSize": { + "Relative": "EXTRA_LARGE" + }, + "FontColor": "#2185D9" + }, + "HorizontalTextAlignment": "CENTER", + "BackgroundColor": "#FFFFFF", + "Border": { + "UniformBorder": { + "Style": "NONE" + } + } + }, + "RowAlternateColorOptions": { + "Status": "ENABLED", + "RowAlternateColors": [ + "#EEEEEE" + ] + } + }, + "TotalOptions": { + "RowSubtotalOptions": { + "TotalsVisibility": "VISIBLE", + "TotalCellStyle": { + "FontConfiguration": { + "FontSize": { + "Relative": "EXTRA_LARGE" + } + } + }, + "StyleTargets": [ + { + "CellType": "TOTAL" + } + ] + }, + "RowTotalOptions": { + "TotalsVisibility": "HIDDEN", + "ScrollStatus": "SCROLLED" + }, + "ColumnTotalOptions": { + "TotalsVisibility": "HIDDEN" + } + }, + "FieldOptions": { + "SelectedFieldOptions": [ + { + "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676651221498", + "CustomLabel": "Month", + "Visibility": "VISIBLE" + }, + { + "FieldId": "e59682ba-8100-448f-b5e6-9a04fd49d7a7.medium.1.1676651251164", + "CustomLabel": "Format", + "Visibility": "VISIBLE" + }, + { + "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.3.1678481843276", + "Visibility": "VISIBLE" + } + ], + "DataPathOptions": [ + { + "DataPathList": [ + { + "FieldId": "afdf6e9e-6ca5-491f-9dd6-7ffbc2431e2b.0.1676651221498", + "FieldValue": "LocalTime" + } + ], + "Width": "181px" + }, + { + "DataPathList": [ + { + "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.3.1678481843276", + "FieldValue": "Check Out", + "DataPathType": { + "PivotTableDataPathType": "COUNT_METRIC_COLUMN" + } + }, + { + "DataPathType": { + "PivotTableDataPathType": "COUNT_METRIC_COLUMN" + } + } + ], + "Width": "156px" + }, + { + "DataPathList": [ + { + "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.3.1678481843276", + "FieldValue": "Hold", + "DataPathType": { + "PivotTableDataPathType": "COUNT_METRIC_COLUMN" + } + }, + { + "DataPathType": { + "PivotTableDataPathType": "COUNT_METRIC_COLUMN" + } + } + ], + "Width": "121px" + } + ] + } + }, + "Actions": [] + } + }, + { + "PieChartVisual": { + "VisualId": "fbb6cb96-93f8-4e78-950c-df429aee5496", + "Title": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n \n Checkouts By Distributor\n \n" + } + }, + "Subtitle": { + "Visibility": "VISIBLE" + }, + "ChartConfiguration": { + "FieldWells": { + "PieChartAggregatedFieldWells": { + "Category": [ + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.distributor.0.1710426640933", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "distributor" + } + } + } + ], + "Values": [ + { + "CategoricalMeasureField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.1.1710426654883", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "event_type" + }, + "AggregationFunction": "COUNT" + } + } + ] + } + }, + "SortConfiguration": { + "CategorySort": [ + { + "FieldSort": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.1.1710426654883", + "Direction": "DESC" + } + } + ], + "CategoryItemsLimit": { + "OtherCategories": "INCLUDE" + }, + "SmallMultiplesLimitConfiguration": { + "OtherCategories": "INCLUDE" + } + }, + "DonutOptions": { + "ArcOptions": { + "ArcThickness": "WHOLE" + } + }, + "Legend": { + "Position": "RIGHT", + "Width": "219px" + }, + "DataLabels": { + "Visibility": "VISIBLE", + "MeasureLabelVisibility": "VISIBLE", + "Position": "OUTSIDE", + "LabelFontConfiguration": { + "FontSize": { + "Relative": "LARGE" + } + }, + "Overlap": "DISABLE_OVERLAP" + }, + "Tooltip": { + "TooltipVisibility": "VISIBLE", + "SelectedTooltipType": "DETAILED", + "FieldBasedTooltip": { + "AggregationVisibility": "HIDDEN", + "TooltipTitleType": "PRIMARY_VALUE", + "TooltipFields": [ + { + "FieldTooltipItem": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.distributor.0.1710426640933", + "Visibility": "VISIBLE" + } + }, + { + "FieldTooltipItem": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.1.1710426654883", + "Visibility": "VISIBLE" + } + } + ] + } + } + }, + "Actions": [], + "ColumnHierarchies": [] + } + } + ], + "TextBoxes": [ + { + "SheetTextBoxId": "e8d719e8-6728-40d9-b13d-63a6fb498974", + "Content": "\n \n Collection Circulation Details\n \n
\n The following graphs show collection circulation details year to date. To change the time frame for the data being reported below, click the dropdown arrow in the top right of the screen above this description and adjust the \"Time Frame\" settings to the time frame of interest.\n
\n Note: Updated data for the past 24 hours is loaded each evening at/around midnight Eastern time.\n
" + } + ], + "Layouts": [ + { + "Configuration": { + "GridLayout": { + "Elements": [ + { + "ElementId": "e8d719e8-6728-40d9-b13d-63a6fb498974", + "ElementType": "TEXT_BOX", + "ColumnIndex": 0, + "ColumnSpan": 36, + "RowIndex": 0, + "RowSpan": 4 + }, + { + "ElementId": "3f8b4ace-958f-4c9c-9f50-fc357ef72abb", + "ElementType": "VISUAL", + "ColumnIndex": 0, + "ColumnSpan": 19, + "RowIndex": 4, + "RowSpan": 17 + }, + { + "ElementId": "244f9e06-857f-4113-a603-82c461fefa0c", + "ElementType": "VISUAL", + "ColumnIndex": 19, + "ColumnSpan": 17, + "RowIndex": 4, + "RowSpan": 9 + }, + { + "ElementId": "c8b8842d-dddd-44a8-b0f4-b70786151aee", + "ElementType": "VISUAL", + "ColumnIndex": 19, + "ColumnSpan": 17, + "RowIndex": 13, + "RowSpan": 8 + }, + { + "ElementId": "fbb6cb96-93f8-4e78-950c-df429aee5496", + "ElementType": "VISUAL", + "ColumnIndex": 0, + "ColumnSpan": 36, + "RowIndex": 21, + "RowSpan": 12 + }, + { + "ElementId": "ffb7fb85-bf46-4f25-abd9-53da8aa741ef", + "ElementType": "VISUAL", + "ColumnIndex": 0, + "ColumnSpan": 36, + "RowIndex": 33, + "RowSpan": 12 + }, + { + "ElementId": "09402e88-46e9-423a-9cb0-5390786ea38b", + "ElementType": "VISUAL", + "ColumnIndex": 0, + "ColumnSpan": 36, + "RowIndex": 45, + "RowSpan": 12 + }, + { + "ElementId": "41934a89-de94-44ce-8cc3-e7ed4c6db2c6", + "ElementType": "VISUAL", + "ColumnIndex": 0, + "ColumnSpan": 36, + "RowIndex": 57, + "RowSpan": 14 + }, + { + "ElementId": "0c9b3337-9dad-4501-8306-d0071e86c9d7", + "ElementType": "VISUAL", + "ColumnIndex": 0, + "ColumnSpan": 36, + "RowIndex": 71, + "RowSpan": 12 + } + ], + "CanvasSizeOptions": { + "ScreenCanvasSizeOptions": { + "ResizeOption": "FIXED", + "OptimizedViewPortWidth": "1280px" + } + } + } + } + } + ], + "SheetControlLayouts": [ + { + "Configuration": { + "GridLayout": { + "Elements": [ + { + "ElementId": "c66fe5da-063f-4f87-9807-75803bed4166", + "ElementType": "FILTER_CONTROL", + "ColumnIndex": 0, + "ColumnSpan": 4, + "RowIndex": 0, + "RowSpan": 1 + }, + { + "ElementId": "a110f7d6-52ef-44c3-9f78-5f8d9ab8df00", + "ElementType": "FILTER_CONTROL", + "ColumnIndex": 4, + "ColumnSpan": 3, + "RowIndex": 0, + "RowSpan": 1 + } + ] + } + } + } + ], + "ContentType": "INTERACTIVE" + }, + { + "SheetId": "a9e410d9-f4c6-4bbd-95af-e570e97258d3", + "Name": "Title Circulation Details", + "FilterControls": [ + { + "RelativeDateTime": { + "FilterControlId": "28404522-617b-486b-b92b-7ba0662031ad", + "Title": "Time Frame:", + "SourceFilterId": "2e7ed53b-2d4d-4be7-9d4a-4fa7063f4113", + "DisplayOptions": { + "TitleOptions": { + "Visibility": "VISIBLE", + "FontConfiguration": { + "FontSize": { + "Relative": "MEDIUM" + } + } + }, + "DateTimeFormat": "MM/DD/YYYY", + "InfoIconLabelOptions": { + "Visibility": "HIDDEN" + } + } + } + }, + { + "Dropdown": { + "FilterControlId": "54f6e854-5b88-4f9b-be3f-6ba1a703af2c", + "Title": "Select Library/Libraries:", + "SourceFilterId": "146c7012-8a73-4f73-98a0-0f815da9be91", + "DisplayOptions": { + "SelectAllOptions": { + "Visibility": "VISIBLE" + }, + "TitleOptions": { + "Visibility": "VISIBLE", + "FontConfiguration": { + "FontSize": { + "Relative": "MEDIUM" + } + } + }, + "InfoIconLabelOptions": { + "Visibility": "HIDDEN" + } + }, + "Type": "MULTI_SELECT" + } + } + ], + "Visuals": [ + { + "PivotTableVisual": { + "VisualId": "0491632c-1f33-4ef7-8775-e19df25b66dc", + "Title": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n \n Holds\n \n" + } + }, + "Subtitle": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n By Title, By Format, and By License\n" + } + }, + "ChartConfiguration": { + "FieldWells": { + "PivotTableAggregatedFieldWells": { + "Rows": [ + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678473924318", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "title" + } + } + } + ], + "Columns": [ + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.medium.3.1678717380031", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "medium" + }, + "FormatConfiguration": { + "NullValueFormatConfiguration": { + "NullString": "null" + } + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.1.1678473947939", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "License" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.2.1678473961994", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "Event Short Name" + } + } + } + ], + "Values": [] + } + }, + "SortConfiguration": { + "FieldSortOptions": [ + { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678473924318", + "SortBy": { + "Field": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678473924318", + "Direction": "ASC" + } + } + }, + { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.medium.3.1678717380031", + "SortBy": { + "Field": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.medium.3.1678717380031", + "Direction": "ASC" + } + } + } + ] + }, + "TableOptions": { + "SingleMetricVisibility": "HIDDEN", + "ToggleButtonsVisibility": "HIDDEN", + "ColumnHeaderStyle": { + "FontConfiguration": { + "FontSize": { + "Relative": "LARGE" + }, + "FontColor": "#2185D9" + }, + "HorizontalTextAlignment": "CENTER", + "Height": 27, + "Border": { + "SideSpecificBorder": { + "InnerVertical": { + "Style": "SOLID" + } + } + } + }, + "RowHeaderStyle": { + "HorizontalTextAlignment": "LEFT", + "Border": { + "UniformBorder": { + "Style": "NONE" + } + } + }, + "CellStyle": { + "FontConfiguration": { + "FontSize": { + "Relative": "LARGE" + } + }, + "HorizontalTextAlignment": "CENTER", + "Height": 23 + }, + "RowFieldNamesStyle": { + "FontConfiguration": { + "FontSize": { + "Relative": "LARGE" + }, + "FontColor": "#2185D9" + }, + "HorizontalTextAlignment": "CENTER", + "Height": 27, + "Border": { + "SideSpecificBorder": { + "InnerVertical": { + "Style": "SOLID" + } + } + } + }, + "RowsLayout": "TABULAR" + }, + "FieldOptions": { + "SelectedFieldOptions": [ + { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678473924318", + "CustomLabel": "Title", + "Visibility": "VISIBLE" + }, + { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.medium.3.1678717380031", + "CustomLabel": "Medium", + "Visibility": "VISIBLE" + }, + { + "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.1.1678473947939", + "CustomLabel": "License", + "Visibility": "VISIBLE" + }, + { + "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.2.1678473961994", + "CustomLabel": "Circulation Event", + "Visibility": "VISIBLE" + } + ], + "DataPathOptions": [ + { + "DataPathList": [ + { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678473924318", + "FieldValue": "title" + } + ], + "Width": "399px" + } + ] + } + }, + "Actions": [] + } + }, + { + "PivotTableVisual": { + "VisualId": "3fc88d23-c9f5-44df-978c-75b855d44bba", + "Title": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n \n Checkouts\n \n" + } + }, + "Subtitle": { + "Visibility": "VISIBLE", + "FormatText": { + "RichText": "\n By Title, By Format, and By License\n" + } + }, + "ChartConfiguration": { + "FieldWells": { + "PivotTableAggregatedFieldWells": { + "Rows": [ + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678473924318", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "title" + } + } + } + ], + "Columns": [ + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.medium.3.1678717380031", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "medium" + }, + "FormatConfiguration": { + "NullValueFormatConfiguration": { + "NullString": "null" + } + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.1.1678473947939", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "License" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.2.1678473961994", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "Event Short Name" + } + } + } + ], + "Values": [] + } + }, + "SortConfiguration": { + "FieldSortOptions": [ + { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678473924318", + "SortBy": { + "Field": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678473924318", + "Direction": "ASC" + } + } + }, + { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.medium.3.1678717380031", + "SortBy": { + "Field": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.medium.3.1678717380031", + "Direction": "ASC" + } + } + } + ] + }, + "TableOptions": { + "SingleMetricVisibility": "HIDDEN", + "ToggleButtonsVisibility": "HIDDEN", + "ColumnHeaderStyle": { + "FontConfiguration": { + "FontSize": { + "Relative": "LARGE" + }, + "FontColor": "#2185D9" + }, + "HorizontalTextAlignment": "CENTER", + "Height": 27, + "Border": { + "SideSpecificBorder": { + "InnerVertical": { + "Style": "SOLID" + } + } + } + }, + "RowHeaderStyle": { + "HorizontalTextAlignment": "LEFT", + "Border": { + "UniformBorder": { + "Style": "NONE" + } + } + }, + "CellStyle": { + "FontConfiguration": { + "FontSize": { + "Relative": "LARGE" + } + }, + "HorizontalTextAlignment": "CENTER", + "Height": 23 + }, + "RowFieldNamesStyle": { + "FontConfiguration": { + "FontSize": { + "Relative": "LARGE" + }, + "FontColor": "#2185D9" + }, + "HorizontalTextAlignment": "CENTER", + "Height": 27, + "Border": { + "SideSpecificBorder": { + "InnerVertical": { + "Style": "SOLID" + } + } + } + }, + "RowsLayout": "TABULAR" + }, + "FieldOptions": { + "SelectedFieldOptions": [ + { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678473924318", + "CustomLabel": "Title", + "Visibility": "VISIBLE" + }, + { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.medium.3.1678717380031", + "CustomLabel": "Medium", + "Visibility": "VISIBLE" + }, + { + "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.1.1678473947939", + "CustomLabel": "License", + "Visibility": "VISIBLE" + }, + { + "FieldId": "3210f4c3-3c37-4d73-8948-d5ffbf3887e9.2.1678473961994", + "CustomLabel": "Circulation Event", + "Visibility": "VISIBLE" + } + ], + "DataPathOptions": [ + { + "DataPathList": [ + { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.0.1678473924318", + "FieldValue": "title" + } + ], + "Width": "399px" + } + ] + } + }, + "Actions": [] + } + } + ], + "TextBoxes": [ + { + "SheetTextBoxId": "9cff0898-309b-4533-98a0-c589d37617d4", + "Content": "\n \u00a0\n \n Title Circulation Details\n \n
\n The following graphs show title circulation details year to date. To change the time frame for the data being reported below, click the dropdown arrow in the top right of the screen above this description and adjust the \"Time Frame\" settings to the time frame of interest.\n
\n Note: Updated data for the past 24 hours is loaded each evening at/around midnight Eastern time.\n
" + } + ], + "Layouts": [ + { + "Configuration": { + "GridLayout": { + "Elements": [ + { + "ElementId": "9cff0898-309b-4533-98a0-c589d37617d4", + "ElementType": "TEXT_BOX", + "ColumnIndex": 0, + "ColumnSpan": 36, + "RowIndex": 0, + "RowSpan": 3 + }, + { + "ElementId": "3fc88d23-c9f5-44df-978c-75b855d44bba", + "ElementType": "VISUAL", + "ColumnIndex": 0, + "ColumnSpan": 36, + "RowIndex": 3, + "RowSpan": 20 + }, + { + "ElementId": "0491632c-1f33-4ef7-8775-e19df25b66dc", + "ElementType": "VISUAL", + "ColumnSpan": 36, + "RowSpan": 20 + } + ], + "CanvasSizeOptions": { + "ScreenCanvasSizeOptions": { + "ResizeOption": "FIXED", + "OptimizedViewPortWidth": "1600px" + } + } + } + } + } + ], + "SheetControlLayouts": [ + { + "Configuration": { + "GridLayout": { + "Elements": [ + { + "ElementId": "54f6e854-5b88-4f9b-be3f-6ba1a703af2c", + "ElementType": "FILTER_CONTROL", + "ColumnIndex": 0, + "ColumnSpan": 4, + "RowIndex": 0, + "RowSpan": 1 + }, + { + "ElementId": "28404522-617b-486b-b92b-7ba0662031ad", + "ElementType": "FILTER_CONTROL", + "ColumnIndex": 4, + "ColumnSpan": 3, + "RowIndex": 0, + "RowSpan": 1 + } + ] + } + } + } + ], + "ContentType": "INTERACTIVE" + }, + { + "SheetId": "ded6b98a-5295-4595-82f2-8e3d1df3b0e3", + "Name": "Export: All Usage Data", + "FilterControls": [ + { + "RelativeDateTime": { + "FilterControlId": "2fcbbfbb-46ae-4a37-af4b-503caeadd5e2", + "Title": "Time Frame:", + "SourceFilterId": "3a03538b-8204-49f2-bf63-18c3e4353c2c", + "DisplayOptions": { + "TitleOptions": { + "Visibility": "VISIBLE", + "FontConfiguration": { + "FontSize": { + "Relative": "MEDIUM" + } + } + }, + "DateTimeFormat": "MM/DD/YYYY", + "InfoIconLabelOptions": { + "Visibility": "HIDDEN" + } + } + } + }, + { + "Dropdown": { + "FilterControlId": "bada69b8-cba5-42a6-9b19-6cdc598b7856", + "Title": "Audience:", + "SourceFilterId": "4c4a93b1-dc82-403a-b59e-18a461300f15", + "DisplayOptions": { + "SelectAllOptions": { + "Visibility": "VISIBLE" + }, + "TitleOptions": { + "Visibility": "VISIBLE", + "FontConfiguration": { + "FontSize": { + "Relative": "MEDIUM" + } + } + }, + "InfoIconLabelOptions": { + "Visibility": "HIDDEN" + } + }, + "Type": "MULTI_SELECT" + } + }, + { + "Dropdown": { + "FilterControlId": "7aea1830-c5c4-4b61-9aa3-b2976731ebf9", + "Title": "Collection:", + "SourceFilterId": "2810c06d-055b-427c-b047-9d2f6a0164b8", + "DisplayOptions": { + "SelectAllOptions": { + "Visibility": "VISIBLE" + }, + "TitleOptions": { + "Visibility": "VISIBLE", + "FontConfiguration": { + "FontSize": { + "Relative": "MEDIUM" + } + } + }, + "InfoIconLabelOptions": { + "Visibility": "HIDDEN" + } + }, + "Type": "MULTI_SELECT" + } + }, + { + "Dropdown": { + "FilterControlId": "14005b24-32bf-47aa-8e8f-9c858ef02ad6", + "Title": "Distributor:", + "SourceFilterId": "a199fae1-68d5-47d2-9143-a3820ed9da80", + "DisplayOptions": { + "SelectAllOptions": { + "Visibility": "VISIBLE" + }, + "TitleOptions": { + "Visibility": "VISIBLE", + "FontConfiguration": { + "FontSize": { + "Relative": "MEDIUM" + } + } + }, + "InfoIconLabelOptions": { + "Visibility": "HIDDEN" + } + }, + "Type": "MULTI_SELECT" + } + }, + { + "Dropdown": { + "FilterControlId": "d3030597-289d-430e-b006-f63cf452d378", + "Title": "Select Library/Libraries:", + "SourceFilterId": "2a54c661-7b10-447e-b29e-a10f5879cee7", + "DisplayOptions": { + "SelectAllOptions": { + "Visibility": "VISIBLE" + }, + "TitleOptions": { + "Visibility": "VISIBLE", + "FontConfiguration": { + "FontSize": { + "Relative": "MEDIUM" + } + } + }, + "InfoIconLabelOptions": { + "Visibility": "HIDDEN" + } + }, + "Type": "MULTI_SELECT" + } + }, + { + "Dropdown": { + "FilterControlId": "f7b7d78c-6227-43f1-a3cc-5a2b0f56daa8", + "Title": "License Type:", + "SourceFilterId": "b2df559d-25ad-40b1-807b-db61d403bd97", + "DisplayOptions": { + "SelectAllOptions": { + "Visibility": "VISIBLE" + }, + "TitleOptions": { + "Visibility": "VISIBLE", + "FontConfiguration": { + "FontSize": { + "Relative": "MEDIUM" + } + } + }, + "InfoIconLabelOptions": { + "Visibility": "HIDDEN" + } + }, + "Type": "MULTI_SELECT" + } + }, + { + "Dropdown": { + "FilterControlId": "fd52ba6d-4632-4e1c-b5f0-c23ab33c8eca", + "Title": "Format:", + "SourceFilterId": "5e507833-7683-49cf-9bef-eaa57a67916f", + "DisplayOptions": { + "SelectAllOptions": { + "Visibility": "VISIBLE" + }, + "TitleOptions": { + "Visibility": "VISIBLE", + "FontConfiguration": { + "FontSize": { + "Relative": "MEDIUM" + } + } + }, + "InfoIconLabelOptions": { + "Visibility": "HIDDEN" + } + }, + "Type": "MULTI_SELECT" + } + }, + { + "Dropdown": { + "FilterControlId": "945c6e84-7909-47aa-8559-a9533afbe748", + "Title": "Event Type:", + "SourceFilterId": "ef5c1574-6ef9-4be5-a457-4c0b8c65d91f", + "DisplayOptions": { + "SelectAllOptions": { + "Visibility": "VISIBLE" + }, + "TitleOptions": { + "Visibility": "VISIBLE", + "FontConfiguration": { + "FontSize": { + "Relative": "MEDIUM" + } + } + }, + "InfoIconLabelOptions": { + "Visibility": "HIDDEN" + } + }, + "Type": "MULTI_SELECT" + } + } + ], + "Visuals": [ + { + "TableVisual": { + "VisualId": "c1f917cf-f6a3-4186-869f-2053e84b5ebc", + "Title": { + "Visibility": "HIDDEN" + }, + "Subtitle": { + "Visibility": "HIDDEN" + }, + "ChartConfiguration": { + "FieldWells": { + "TableAggregatedFieldWells": { + "GroupBy": [ + { + "DateDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.time_stamp.2.1706905943721", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "time_stamp" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.12.1707332214886", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "event_type" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.library_name.6.1706906047497", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "library_name" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.libary_short_name.16.1727183420457", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "libary_short_name" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.collection_name.4.1706905995146", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "collection_name" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.1.1706905451211", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "title" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.author.1.1706905911541", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "author" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.identifier.8.1706906127812", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "identifier" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.publisher.7.1706906076591", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "publisher" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.distributor.13.1712173775658", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "distributor" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.genre.10.1706906142438", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "genre" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.audience.11.1706906374916", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "audience" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.medium.12.1706906435576", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "medium" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.language.13.1712173229103", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "language" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "1fddc8ca-0639-4e98-a807-829990c9eb70.fiction.16.1733273056233", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "fiction" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "8d672419-06f1-49d0-8079-f86dcde7e35e.15.1733277923903", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "License" + } + } + }, + { + "CategoricalDimensionField": { + "FieldId": "1fddc8ca-0639-4e98-a807-829990c9eb70.open_access.16.1733278022971", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "open_access" + } + } + } + ], + "Values": [] + } + }, + "SortConfiguration": {}, + "TableOptions": { + "HeaderStyle": { + "Visibility": "VISIBLE", + "TextWrap": "WRAP", + "Height": 25 + }, + "CellStyle": { + "Height": 25 + }, + "RowAlternateColorOptions": { + "Status": "DISABLED", + "UsePrimaryBackgroundColor": "ENABLED" + } + }, + "FieldOptions": { + "SelectedFieldOptions": [ + { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.collection_name.4.1706905995146", + "Width": "211px" + }, + { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.title.1.1706905451211", + "Width": "368px" + }, + { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.author.1.1706905911541", + "Width": "299px" + }, + { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.publisher.7.1706906076591", + "Width": "183px" + }, + { + "FieldId": "6c80275e-d03d-417c-a8cd-57d93e58129b.genre.10.1706906142438", + "Width": "274px" + } + ], + "Order": [ + "6c80275e-d03d-417c-a8cd-57d93e58129b.time_stamp.2.1706905943721", + "6c80275e-d03d-417c-a8cd-57d93e58129b.event_type.12.1707332214886", + "6c80275e-d03d-417c-a8cd-57d93e58129b.library_name.6.1706906047497", + "6c80275e-d03d-417c-a8cd-57d93e58129b.libary_short_name.16.1727183420457", + "6c80275e-d03d-417c-a8cd-57d93e58129b.collection_name.4.1706905995146", + "6c80275e-d03d-417c-a8cd-57d93e58129b.title.1.1706905451211", + "6c80275e-d03d-417c-a8cd-57d93e58129b.author.1.1706905911541", + "6c80275e-d03d-417c-a8cd-57d93e58129b.identifier.8.1706906127812", + "6c80275e-d03d-417c-a8cd-57d93e58129b.publisher.7.1706906076591", + "6c80275e-d03d-417c-a8cd-57d93e58129b.distributor.13.1712173775658", + "6c80275e-d03d-417c-a8cd-57d93e58129b.genre.10.1706906142438", + "6c80275e-d03d-417c-a8cd-57d93e58129b.audience.11.1706906374916", + "6c80275e-d03d-417c-a8cd-57d93e58129b.medium.12.1706906435576", + "6c80275e-d03d-417c-a8cd-57d93e58129b.language.13.1712173229103", + "1fddc8ca-0639-4e98-a807-829990c9eb70.fiction.16.1733273056233", + "8d672419-06f1-49d0-8079-f86dcde7e35e.15.1733277923903", + "1fddc8ca-0639-4e98-a807-829990c9eb70.open_access.16.1733278022971" + ] + } + }, + "Actions": [] + } + } ], "TextBoxes": [ { "SheetTextBoxId": "6cd0dd50-1510-4283-b537-126ddb0b790b", - "Content": "\n \n CSV Raw Data Report\n \n" + "Content": "\n \n All Usage Data\n \n
\n The following table shows all historical circulation events captured by Palace year to date. To change the time frame or any of the parameters listed for the data being reported below, click the dropdown arrow in the top right of the screen above this description and adjust the settings to the parameter of interest.\n
\n Note: Updated data for the past 24 hours is loaded each evening at/around midnight Eastern time.\n
" } ], "Layouts": [ @@ -4607,16 +5203,16 @@ "ElementId": "6cd0dd50-1510-4283-b537-126ddb0b790b", "ElementType": "TEXT_BOX", "ColumnIndex": 0, - "ColumnSpan": 30, + "ColumnSpan": 36, "RowIndex": 0, - "RowSpan": 2 + "RowSpan": 3 }, { - "ElementId": "379eac08-b1e1-40c0-8e8a-bd2c4205ddd7", + "ElementId": "c1f917cf-f6a3-4186-869f-2053e84b5ebc", "ElementType": "VISUAL", "ColumnIndex": 0, - "ColumnSpan": 35, - "RowIndex": 2, + "ColumnSpan": 36, + "RowIndex": 3, "RowSpan": 14 } ], @@ -4635,82 +5231,68 @@ "Configuration": { "GridLayout": { "Elements": [ - { - "ElementId": "2fcbbfbb-46ae-4a37-af4b-503caeadd5e2", - "ElementType": "FILTER_CONTROL", - "ColumnIndex": 0, - "ColumnSpan": 2, - "RowIndex": 0, - "RowSpan": 1 - }, { "ElementId": "d3030597-289d-430e-b006-f63cf452d378", "ElementType": "FILTER_CONTROL", - "ColumnIndex": 2, - "ColumnSpan": 2, + "ColumnIndex": 0, + "ColumnSpan": 4, "RowIndex": 0, "RowSpan": 1 }, { - "ElementId": "7aea1830-c5c4-4b61-9aa3-b2976731ebf9", + "ElementId": "2fcbbfbb-46ae-4a37-af4b-503caeadd5e2", "ElementType": "FILTER_CONTROL", "ColumnIndex": 4, - "ColumnSpan": 2, - "RowIndex": 0, - "RowSpan": 1 - }, - { - "ElementId": "14005b24-32bf-47aa-8e8f-9c858ef02ad6", - "ElementType": "FILTER_CONTROL", - "ColumnIndex": 6, - "ColumnSpan": 2, + "ColumnSpan": 3, "RowIndex": 0, "RowSpan": 1 }, { - "ElementId": "fedceaa1-28f9-4f08-888d-60764270a600", + "ElementId": "945c6e84-7909-47aa-8559-a9533afbe748", "ElementType": "FILTER_CONTROL", - "ColumnIndex": 8, - "ColumnSpan": 2, + "ColumnIndex": 7, + "ColumnSpan": 4, "RowIndex": 0, "RowSpan": 1 }, { - "ElementId": "f7b7d78c-6227-43f1-a3cc-5a2b0f56daa8", + "ElementId": "7aea1830-c5c4-4b61-9aa3-b2976731ebf9", "ElementType": "FILTER_CONTROL", - "ColumnIndex": 10, - "ColumnSpan": 2, - "RowIndex": 0, + "ColumnIndex": 0, + "ColumnSpan": 4, + "RowIndex": 1, "RowSpan": 1 }, { - "ElementId": "2bc82b83-b4da-45ed-9db8-13d9a26f87f9", + "ElementId": "14005b24-32bf-47aa-8e8f-9c858ef02ad6", "ElementType": "FILTER_CONTROL", - "ColumnIndex": 0, - "ColumnSpan": 2, + "ColumnIndex": 4, + "ColumnSpan": 4, "RowIndex": 1, "RowSpan": 1 }, { - "ElementId": "bada69b8-cba5-42a6-9b19-6cdc598b7856", + "ElementId": "fd52ba6d-4632-4e1c-b5f0-c23ab33c8eca", "ElementType": "FILTER_CONTROL", - "ColumnIndex": 2, - "ColumnSpan": 2, + "ColumnIndex": 8, + "ColumnSpan": 3, "RowIndex": 1, "RowSpan": 1 }, { - "ElementId": "bbcbec4e-1fd2-4f93-9dae-a3f952a52bd4", + "ElementId": "f7b7d78c-6227-43f1-a3cc-5a2b0f56daa8", "ElementType": "FILTER_CONTROL", - "ColumnIndex": 4, - "ColumnSpan": 2, - "RowIndex": 1, + "ColumnIndex": 0, + "ColumnSpan": 4, + "RowIndex": 2, "RowSpan": 1 }, { - "ElementId": "fd52ba6d-4632-4e1c-b5f0-c23ab33c8eca", + "ElementId": "bada69b8-cba5-42a6-9b19-6cdc598b7856", "ElementType": "FILTER_CONTROL", - "ColumnSpan": 2, + "ColumnIndex": 4, + "ColumnSpan": 4, + "RowIndex": 2, "RowSpan": 1 } ] @@ -4753,65 +5335,564 @@ "Expression": "ifelse(fiction='true','Fiction',fiction='false','Non-fiction','Unknown')" }, { - "DataSetIdentifier": "circulation_view", - "Name": "Hawaii", - "Expression": "addDateTime(-9,'HH',{time_stamp})" + "DataSetIdentifier": "circulation_view", + "Name": "Hawaii", + "Expression": "addDateTime(-9,'HH',{time_stamp})" + }, + { + "DataSetIdentifier": "circulation_view", + "Name": "License", + "Expression": "ifelse({open_access}='yes','Open Access','Licensed')" + }, + { + "DataSetIdentifier": "circulation_view", + "Name": "LocalTime", + "Expression": "ifelse(${TimeZone}='Eastern',Eastern,ifelse(${TimeZone}='Central',Central,{time_stamp}))" + }, + { + "DataSetIdentifier": "circulation_view", + "Name": "Mountain", + "Expression": "addDateTime(-7,'HH',{time_stamp})" + }, + { + "DataSetIdentifier": "circulation_view", + "Name": "Name of Day", + "Expression": "ifelse\n( \n isNull({Day of Week}),'Untested', \n {Day of Week}=1, 'Sunday', \n {Day of Week}=2, 'Monday', \n {Day of Week}=3, 'Tuesday',\n {Day of Week}=4, 'Wednesday',\n {Day of Week}=5, 'Thursday',\n {Day of Week}=6, 'Friday',\n 'Saturday'\n)" + }, + { + "DataSetIdentifier": "circulation_view", + "Name": "Pacific", + "Expression": "addDateTime(-8,'HH',{time_stamp})" + } + ], + "ParameterDeclarations": [ + { + "StringParameterDeclaration": { + "ParameterValueType": "SINGLE_VALUED", + "Name": "TimeZone", + "DefaultValues": { + "StaticValues": [ + "Eastern" + ] + }, + "ValueWhenUnset": { + "ValueWhenUnsetOption": "RECOMMENDED_VALUE" + } + } + }, + { + "StringParameterDeclaration": { + "ParameterValueType": "SINGLE_VALUED", + "Name": "library", + "DefaultValues": { + "StaticValues": [] + }, + "ValueWhenUnset": { + "ValueWhenUnsetOption": "NULL" + } + } + }, + { + "DateTimeParameterDeclaration": { + "Name": "Timeframe", + "DefaultValues": { + "StaticValues": [], + "RollingDate": { + "Expression": "truncDate('YYYY', now())" + } + }, + "TimeGranularity": "DAY" + } + } + ], + "FilterGroups": [ + { + "FilterGroupId": "644165d9-f97c-4bf3-9c3c-119c8b3939cf", + "Filters": [ + { + "CategoryFilter": { + "FilterId": "c0bc78aa-7e9c-4bcf-a22c-1960d4d25d7e", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "library_name" + }, + "Configuration": { + "CustomFilterListConfiguration": { + "MatchOperator": "CONTAINS", + "SelectAllOptions": "FILTER_ALL_VALUES", + "NullOption": "NON_NULLS_ONLY" + } + } + } + } + ], + "ScopeConfiguration": { + "SelectedSheets": { + "SheetVisualScopingConfigurations": [ + { + "SheetId": "f36d743f-7a14-45ac-bc1f-28401f7c238a", + "Scope": "ALL_VISUALS" + } + ] + } + }, + "Status": "ENABLED", + "CrossDataset": "ALL_DATASETS" + }, + { + "FilterGroupId": "ec3f3a71-258d-4b65-a005-1c50e7b17669", + "Filters": [ + { + "RelativeDatesFilter": { + "FilterId": "2afbfbbc-3947-41fa-a131-d122d5216935", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "LocalTime" + }, + "AnchorDateConfiguration": { + "AnchorOption": "NOW" + }, + "MinimumGranularity": "DAY", + "TimeGranularity": "WEEK", + "RelativeDateType": "LAST", + "RelativeDateValue": 2, + "NullOption": "NON_NULLS_ONLY" + } + } + ], + "ScopeConfiguration": { + "SelectedSheets": { + "SheetVisualScopingConfigurations": [ + { + "SheetId": "f36d743f-7a14-45ac-bc1f-28401f7c238a", + "Scope": "ALL_VISUALS" + } + ] + } + }, + "Status": "ENABLED", + "CrossDataset": "ALL_DATASETS" + }, + { + "FilterGroupId": "f7aedc7b-d7a1-48f4-a9ea-12b5fddfc1ae", + "Filters": [ + { + "CategoryFilter": { + "FilterId": "a67c077f-de26-4ae1-a421-57a87c81e0c3", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "medium" + }, + "Configuration": { + "FilterListConfiguration": { + "MatchOperator": "CONTAINS", + "CategoryValues": [ + "Audio" + ], + "NullOption": "NON_NULLS_ONLY" + } + } + } + } + ], + "ScopeConfiguration": { + "SelectedSheets": { + "SheetVisualScopingConfigurations": [ + { + "SheetId": "dcd0f6be-df96-4fb5-b5ac-597f57137eb9", + "Scope": "SELECTED_VISUALS", + "VisualIds": [ + "5cd25cfa-4b83-4a42-b814-913bda3210fc", + "a309348a-86d3-49ee-81c8-ff6096bd0076" + ] + } + ] + } + }, + "Status": "ENABLED", + "CrossDataset": "SINGLE_DATASET" + }, + { + "FilterGroupId": "1e6d2aed-ecdc-4c73-8db4-b0778e82601e", + "Filters": [ + { + "CategoryFilter": { + "FilterId": "5be4003f-5290-4726-af2f-7e65348ed037", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "medium" + }, + "Configuration": { + "FilterListConfiguration": { + "MatchOperator": "CONTAINS", + "CategoryValues": [ + "Book" + ], + "NullOption": "NON_NULLS_ONLY" + } + } + } + } + ], + "ScopeConfiguration": { + "SelectedSheets": { + "SheetVisualScopingConfigurations": [ + { + "SheetId": "dcd0f6be-df96-4fb5-b5ac-597f57137eb9", + "Scope": "SELECTED_VISUALS", + "VisualIds": [ + "482c8013-427e-4e66-857b-85cd1250f551" + ] + } + ] + } + }, + "Status": "ENABLED", + "CrossDataset": "SINGLE_DATASET" + }, + { + "FilterGroupId": "8cfc6aa1-6e8c-4cf4-8e70-1ab6d3d7cea1", + "Filters": [ + { + "CategoryFilter": { + "FilterId": "f49f4486-1028-4546-9603-473808bb99d2", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "medium" + }, + "Configuration": { + "FilterListConfiguration": { + "MatchOperator": "CONTAINS", + "CategoryValues": [ + "Book" + ], + "NullOption": "NON_NULLS_ONLY" + } + } + } + } + ], + "ScopeConfiguration": { + "SelectedSheets": { + "SheetVisualScopingConfigurations": [ + { + "SheetId": "dcd0f6be-df96-4fb5-b5ac-597f57137eb9", + "Scope": "SELECTED_VISUALS", + "VisualIds": [ + "137f0703-0cd4-41d5-9db5-a9bf3ed22b91" + ] + } + ] + } + }, + "Status": "ENABLED", + "CrossDataset": "SINGLE_DATASET" + }, + { + "FilterGroupId": "3d4cd782-8730-4c97-9370-f646ad09ed11", + "Filters": [ + { + "CategoryFilter": { + "FilterId": "b8710635-c9bb-462c-9784-80f14b477ad0", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "medium" + }, + "Configuration": { + "FilterListConfiguration": { + "MatchOperator": "CONTAINS", + "CategoryValues": [ + "Audio" + ], + "NullOption": "NON_NULLS_ONLY" + } + } + } + } + ], + "ScopeConfiguration": { + "SelectedSheets": { + "SheetVisualScopingConfigurations": [ + { + "SheetId": "dcd0f6be-df96-4fb5-b5ac-597f57137eb9", + "Scope": "SELECTED_VISUALS", + "VisualIds": [ + "c20370b9-3945-4ee8-ba6c-bb6183f85c0f" + ] + } + ] + } + }, + "Status": "ENABLED", + "CrossDataset": "SINGLE_DATASET" + }, + { + "FilterGroupId": "12b6f90d-8e65-4184-acdb-e95b7cd8deef", + "Filters": [ + { + "CategoryFilter": { + "FilterId": "bddeb79b-d118-4449-95fe-aefb4848142b", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "medium" + }, + "Configuration": { + "FilterListConfiguration": { + "MatchOperator": "CONTAINS", + "CategoryValues": [ + "Book" + ], + "NullOption": "NON_NULLS_ONLY" + } + } + } + } + ], + "ScopeConfiguration": { + "SelectedSheets": { + "SheetVisualScopingConfigurations": [ + { + "SheetId": "dcd0f6be-df96-4fb5-b5ac-597f57137eb9", + "Scope": "SELECTED_VISUALS", + "VisualIds": [ + "71bffd3a-328f-448b-8b61-2e2bc615b094" + ] + } + ] + } + }, + "Status": "ENABLED", + "CrossDataset": "SINGLE_DATASET" }, { - "DataSetIdentifier": "circulation_view", - "Name": "License", - "Expression": "ifelse({open_access}=1,'Open Access','Licensed')" + "FilterGroupId": "abab58db-a7c5-42c7-90ed-f7e2894ccb00", + "Filters": [ + { + "CategoryFilter": { + "FilterId": "62b0d342-d13a-4709-b61a-f8b56349a548", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "event_type" + }, + "Configuration": { + "FilterListConfiguration": { + "MatchOperator": "CONTAINS", + "CategoryValues": [ + "circulation_manager_check_out" + ], + "NullOption": "NON_NULLS_ONLY" + } + } + } + } + ], + "ScopeConfiguration": { + "SelectedSheets": { + "SheetVisualScopingConfigurations": [ + { + "SheetId": "dcd0f6be-df96-4fb5-b5ac-597f57137eb9", + "Scope": "SELECTED_VISUALS", + "VisualIds": [ + "c20370b9-3945-4ee8-ba6c-bb6183f85c0f", + "9613d5c1-2456-4b86-8112-99be29d9df81", + "49142318-25be-4aa0-bdc9-d107d9f40921", + "5cd25cfa-4b83-4a42-b814-913bda3210fc", + "b45d64ae-736b-4184-a03c-ebd232ad307d", + "482c8013-427e-4e66-857b-85cd1250f551", + "501264f7-eb80-40b4-b6c0-d864bbe10764", + "51e58b5c-4ec1-44bf-a182-10ddeb84ebaf", + "137f0703-0cd4-41d5-9db5-a9bf3ed22b91", + "ec0b648c-8c9b-476e-b55f-015ca8c7d2e2", + "1ea60774-b6eb-4915-91a0-83e2f1f78300" + ] + } + ] + } + }, + "Status": "ENABLED", + "CrossDataset": "SINGLE_DATASET" }, { - "DataSetIdentifier": "circulation_view", - "Name": "LocalTime", - "Expression": "ifelse(${TimeZone}='Eastern',Eastern,ifelse(${TimeZone}='Central',Central,{time_stamp}))" + "FilterGroupId": "01780d11-e2a9-4b73-bcba-6b67e06acca5", + "Filters": [ + { + "CategoryFilter": { + "FilterId": "bce4cc46-13cd-4086-b77b-6059d15826a3", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "event_type" + }, + "Configuration": { + "FilterListConfiguration": { + "MatchOperator": "CONTAINS", + "CategoryValues": [ + "circulation_manager_hold_place" + ], + "NullOption": "NON_NULLS_ONLY" + } + } + } + } + ], + "ScopeConfiguration": { + "SelectedSheets": { + "SheetVisualScopingConfigurations": [ + { + "SheetId": "dcd0f6be-df96-4fb5-b5ac-597f57137eb9", + "Scope": "SELECTED_VISUALS", + "VisualIds": [ + "71bffd3a-328f-448b-8b61-2e2bc615b094" + ] + } + ] + } + }, + "Status": "ENABLED", + "CrossDataset": "SINGLE_DATASET" }, { - "DataSetIdentifier": "circulation_view", - "Name": "Mountain", - "Expression": "addDateTime(-7,'HH',{time_stamp})" + "FilterGroupId": "d246f69b-61eb-44ad-a4ac-7d2b7ad590cc", + "Filters": [ + { + "CategoryFilter": { + "FilterId": "3227574a-d75b-4e31-9f90-a7fe63e61ba7", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "event_type" + }, + "Configuration": { + "FilterListConfiguration": { + "MatchOperator": "CONTAINS", + "CategoryValues": [ + "circulation_manager_hold_place" + ], + "NullOption": "NON_NULLS_ONLY" + } + } + } + } + ], + "ScopeConfiguration": { + "SelectedSheets": { + "SheetVisualScopingConfigurations": [ + { + "SheetId": "dcd0f6be-df96-4fb5-b5ac-597f57137eb9", + "Scope": "SELECTED_VISUALS", + "VisualIds": [ + "a309348a-86d3-49ee-81c8-ff6096bd0076" + ] + } + ] + } + }, + "Status": "ENABLED", + "CrossDataset": "SINGLE_DATASET" }, { - "DataSetIdentifier": "circulation_view", - "Name": "Name of Day", - "Expression": "ifelse\n( \n isNull({Day of Week}),'Untested', \n {Day of Week}=1, 'Sunday', \n {Day of Week}=2, 'Monday', \n {Day of Week}=3, 'Tuesday',\n {Day of Week}=4, 'Wednesday',\n {Day of Week}=5, 'Thursday',\n {Day of Week}=6, 'Friday',\n 'Saturday'\n)" + "FilterGroupId": "d3470e4a-b155-4d1d-bc28-ec79259e33df", + "Filters": [ + { + "CategoryFilter": { + "FilterId": "789b4ff2-53fd-4442-a7c5-53b556a0d2df", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "License" + }, + "Configuration": { + "FilterListConfiguration": { + "MatchOperator": "CONTAINS", + "CategoryValues": [ + "Open Access" + ], + "NullOption": "NON_NULLS_ONLY" + } + } + } + } + ], + "ScopeConfiguration": { + "SelectedSheets": { + "SheetVisualScopingConfigurations": [ + { + "SheetId": "dcd0f6be-df96-4fb5-b5ac-597f57137eb9", + "Scope": "SELECTED_VISUALS", + "VisualIds": [ + "ec0b648c-8c9b-476e-b55f-015ca8c7d2e2" + ] + } + ] + } + }, + "Status": "ENABLED", + "CrossDataset": "SINGLE_DATASET" }, { - "DataSetIdentifier": "circulation_view", - "Name": "Pacific", - "Expression": "addDateTime(-8,'HH',{time_stamp})" - } - ], - "ParameterDeclarations": [ - { - "StringParameterDeclaration": { - "ParameterValueType": "SINGLE_VALUED", - "Name": "TimeZone", - "DefaultValues": { - "StaticValues": [ - "Eastern" + "FilterGroupId": "accb6e38-f505-4b23-bdaa-ad4f92e99cad", + "Filters": [ + { + "CategoryFilter": { + "FilterId": "371b2da6-57c6-4094-a975-1e604677a648", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "library_name" + }, + "Configuration": { + "CustomFilterListConfiguration": { + "MatchOperator": "CONTAINS", + "SelectAllOptions": "FILTER_ALL_VALUES", + "NullOption": "NON_NULLS_ONLY" + } + } + } + } + ], + "ScopeConfiguration": { + "SelectedSheets": { + "SheetVisualScopingConfigurations": [ + { + "SheetId": "dcd0f6be-df96-4fb5-b5ac-597f57137eb9", + "Scope": "ALL_VISUALS" + } ] - }, - "ValueWhenUnset": { - "ValueWhenUnsetOption": "RECOMMENDED_VALUE" } - } + }, + "Status": "ENABLED", + "CrossDataset": "ALL_DATASETS" }, { - "StringParameterDeclaration": { - "ParameterValueType": "SINGLE_VALUED", - "Name": "library", - "DefaultValues": { - "StaticValues": [] - }, - "ValueWhenUnset": { - "ValueWhenUnsetOption": "NULL" + "FilterGroupId": "defb392c-20b7-4013-85ed-a79c860b82cc", + "Filters": [ + { + "RelativeDatesFilter": { + "FilterId": "1c26c34b-a666-4ccb-a1c2-596d30bea3c0", + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "LocalTime" + }, + "AnchorDateConfiguration": { + "AnchorOption": "NOW" + }, + "MinimumGranularity": "DAY", + "TimeGranularity": "WEEK", + "RelativeDateType": "LAST", + "RelativeDateValue": 2, + "NullOption": "NON_NULLS_ONLY" + } } - } - } - ], - "FilterGroups": [ + ], + "ScopeConfiguration": { + "SelectedSheets": { + "SheetVisualScopingConfigurations": [ + { + "SheetId": "dcd0f6be-df96-4fb5-b5ac-597f57137eb9", + "Scope": "ALL_VISUALS" + } + ] + } + }, + "Status": "ENABLED", + "CrossDataset": "ALL_DATASETS" + }, { "FilterGroupId": "c0f5dd34-84ac-4cf0-b4ca-1f649cde3ab8", "Filters": [ @@ -4838,11 +5919,11 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "6a460b10-9f34-4596-8eb5-c9eb37abd375", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "c5e5aa76-1381-453f-9b17-4e25c0b71bba", - "007a32cd-9bea-4cf3-ac2b-20b1aff82bf4" + "c4fdbbfd-9157-49ae-8392-e10e04523168", + "8ac2b6bf-cc0e-445a-9af8-334defe68c55" ] } ] @@ -4877,10 +5958,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "6a460b10-9f34-4596-8eb5-c9eb37abd375", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "66b253e5-dc34-4b34-956b-bbc9248ba115" + "d385dda8-d2d5-4ad0-93ac-0b4f87a4f944" ] } ] @@ -4890,11 +5971,11 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "fbcc2e60-b565-4c0d-babb-95a93d34b2db", + "FilterGroupId": "094e194e-9bb1-4a73-81ed-d787ef947a4f", "Filters": [ { "CategoryFilter": { - "FilterId": "84ef0339-4094-415d-b8e1-5f423e5cd0ed", + "FilterId": "5f42e002-c7f8-4e37-8683-f6dcfa9c6656", "Column": { "DataSetIdentifier": "circulation_view", "ColumnName": "medium" @@ -4915,24 +5996,24 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "6a460b10-9f34-4596-8eb5-c9eb37abd375", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "0355e91f-bd1f-4f78-a5c7-b817444f849a" + "d2ee04e2-a636-4bc0-b126-bdd577580536" ] } ] } }, - "Status": "DISABLED", + "Status": "ENABLED", "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "6d489d5e-0a77-4d8d-a249-a1fe2a8ea217", + "FilterGroupId": "5144d26f-8f30-44d8-86c1-4cd0c2669666", "Filters": [ { "CategoryFilter": { - "FilterId": "3710f0bf-bd5d-4d7c-b78d-6378ad50d6cf", + "FilterId": "6a2c91c4-c53b-46b8-a85b-303ada280bca", "Column": { "DataSetIdentifier": "circulation_view", "ColumnName": "medium" @@ -4953,10 +6034,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "6a460b10-9f34-4596-8eb5-c9eb37abd375", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "1aff8e05-147d-4738-9e8f-38dece666b5a" + "89171b34-0956-4b6f-878a-95966befbb22" ] } ] @@ -4966,11 +6047,11 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "40a1b72d-0c97-49bd-bd08-f6b6b3da9c08", + "FilterGroupId": "9388b5e4-009f-4de9-86e0-996c3c354dc8", "Filters": [ { "CategoryFilter": { - "FilterId": "8029b872-a691-44b1-ae7d-32d161170b93", + "FilterId": "3ed75567-b33c-4350-ac18-6c77c75c8651", "Column": { "DataSetIdentifier": "circulation_view", "ColumnName": "medium" @@ -4979,7 +6060,7 @@ "FilterListConfiguration": { "MatchOperator": "CONTAINS", "CategoryValues": [ - "Audio" + "Book" ], "NullOption": "NON_NULLS_ONLY" } @@ -4991,33 +6072,33 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "6a460b10-9f34-4596-8eb5-c9eb37abd375", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "aad5b850-72ae-4070-97e0-41e707cb2578" + "139d9929-101b-48c7-b141-1c4e9cb3f0d0" ] } ] } }, - "Status": "DISABLED", + "Status": "ENABLED", "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "2a3364d3-588e-4c5a-ab8a-ec2f7d5c5ef3", + "FilterGroupId": "8bc38467-b5ce-469f-aab3-8eecb62d9625", "Filters": [ { "CategoryFilter": { - "FilterId": "784c3cdb-2267-4339-964d-1b7788c00711", + "FilterId": "cbd8064a-6534-475d-b165-6f34dea8314a", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "medium" + "ColumnName": "event_type" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", "CategoryValues": [ - "Book" + "circulation_manager_check_out" ], "NullOption": "NON_NULLS_ONLY" } @@ -5029,10 +6110,20 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "6a460b10-9f34-4596-8eb5-c9eb37abd375", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "aad5b850-72ae-4070-97e0-41e707cb2578" + "89171b34-0956-4b6f-878a-95966befbb22", + "d4eee95d-393d-43ef-8042-c04aa9891d52", + "f1a6cdab-83a4-4e55-8eab-3741f744e2e4", + "c4fdbbfd-9157-49ae-8392-e10e04523168", + "a7bbfb86-f675-4808-b88f-e6d96d8e996b", + "d385dda8-d2d5-4ad0-93ac-0b4f87a4f944", + "80484134-a0fb-4ed9-a1a3-398a45c73ed7", + "dae76451-f3ac-438b-af0d-781be430f547", + "d2ee04e2-a636-4bc0-b126-bdd577580536", + "3c2c39db-6909-4f70-9e41-c67c2420a9c3", + "642e5c01-0a9a-4edd-a41f-5cfa332a8180" ] } ] @@ -5042,20 +6133,20 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "094e194e-9bb1-4a73-81ed-d787ef947a4f", + "FilterGroupId": "e2b8b93d-5b7b-4df7-80e2-af7a9376908d", "Filters": [ { "CategoryFilter": { - "FilterId": "5f42e002-c7f8-4e37-8683-f6dcfa9c6656", + "FilterId": "ed2f6277-7a8a-4156-9f75-0dd0d3fc4dd8", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "medium" + "ColumnName": "event_type" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", "CategoryValues": [ - "Book" + "circulation_manager_hold_place" ], "NullOption": "NON_NULLS_ONLY" } @@ -5067,10 +6158,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "6a460b10-9f34-4596-8eb5-c9eb37abd375", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "3c89e0a5-7670-4edd-a230-9445e16dbfd5" + "139d9929-101b-48c7-b141-1c4e9cb3f0d0" ] } ] @@ -5080,20 +6171,20 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "d216887f-afa7-4049-9ce5-f0c5ed8a3385", + "FilterGroupId": "f245dc86-0790-4fd6-ae02-55e14b22f329", "Filters": [ { "CategoryFilter": { - "FilterId": "48782c62-df0a-4af2-b22a-b2364e5d3aec", + "FilterId": "cc4abd48-28a8-4fbf-84a7-540487bff709", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "medium" + "ColumnName": "event_type" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", "CategoryValues": [ - "Book" + "circulation_manager_hold_place" ], "NullOption": "NON_NULLS_ONLY" } @@ -5105,33 +6196,33 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "6a460b10-9f34-4596-8eb5-c9eb37abd375", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "e62cf0c7-5811-46fb-a67f-50302906f3de" + "8ac2b6bf-cc0e-445a-9af8-334defe68c55" ] } ] } }, - "Status": "DISABLED", + "Status": "ENABLED", "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "5144d26f-8f30-44d8-86c1-4cd0c2669666", + "FilterGroupId": "d9128fa7-f42d-46d6-94d9-5216c734b9c3", "Filters": [ { "CategoryFilter": { - "FilterId": "6a2c91c4-c53b-46b8-a85b-303ada280bca", + "FilterId": "bb390f8f-4c3a-4a97-b7cc-0942aabb30df", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "medium" + "ColumnName": "License" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", "CategoryValues": [ - "Audio" + "Open Access" ], "NullOption": "NON_NULLS_ONLY" } @@ -5143,10 +6234,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "6a460b10-9f34-4596-8eb5-c9eb37abd375", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "e62cf0c7-5811-46fb-a67f-50302906f3de" + "3c2c39db-6909-4f70-9e41-c67c2420a9c3" ] } ] @@ -5156,17 +6247,17 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "7403c402-c875-44cc-9e40-e328bea1e8c3", + "FilterGroupId": "53ca038a-deb8-4f61-ba5c-c2ca886cb019", "Filters": [ { "CategoryFilter": { - "FilterId": "5e571786-b903-4d5d-8f90-141031ac8602", + "FilterId": "c726bb42-5244-44d3-9590-40c61603e1b8", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "libary_short_name" + "ColumnName": "library_name" }, "Configuration": { - "FilterListConfiguration": { + "CustomFilterListConfiguration": { "MatchOperator": "CONTAINS", "SelectAllOptions": "FILTER_ALL_VALUES", "NullOption": "NON_NULLS_ONLY" @@ -5179,7 +6270,7 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "6a460b10-9f34-4596-8eb5-c9eb37abd375", "Scope": "ALL_VISUALS" } ] @@ -5189,24 +6280,22 @@ "CrossDataset": "ALL_DATASETS" }, { - "FilterGroupId": "f9554365-ef48-42bd-b336-03834ca16c2d", + "FilterGroupId": "a90cf133-6f63-4c48-b69f-790773a03af2", "Filters": [ { - "CategoryFilter": { - "FilterId": "125a4dd3-3cd9-432f-93a1-260f462e791e", + "RelativeDatesFilter": { + "FilterId": "01049847-22f7-4ac3-8f9e-73d0a50bd022", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "medium" + "ColumnName": "LocalTime" }, - "Configuration": { - "FilterListConfiguration": { - "MatchOperator": "CONTAINS", - "CategoryValues": [ - "Audio" - ], - "NullOption": "NON_NULLS_ONLY" - } - } + "AnchorDateConfiguration": { + "AnchorOption": "NOW" + }, + "MinimumGranularity": "DAY", + "TimeGranularity": "YEAR", + "RelativeDateType": "NOW", + "NullOption": "NON_NULLS_ONLY" } } ], @@ -5214,33 +6303,30 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", - "Scope": "SELECTED_VISUALS", - "VisualIds": [ - "c8f84091-fe92-44e1-81f7-7961cd2b83ea" - ] + "SheetId": "d3e94719-78fa-4373-9238-fadfd54cd36d", + "Scope": "ALL_VISUALS" } ] } }, - "Status": "DISABLED", + "Status": "ENABLED", "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "2b40bb65-1e35-4f18-9fb2-12d5b86d1da2", + "FilterGroupId": "45d99c46-2d50-4322-9b2c-a6faba95f653", "Filters": [ { "CategoryFilter": { - "FilterId": "21439b99-bc5e-4e87-81b2-68450f07361d", + "FilterId": "8cb28f44-8760-4a9b-ba70-1cb13b96e4f0", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "medium" + "ColumnName": "event_type" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", "CategoryValues": [ - "Book" + "circulation_manager_hold_place" ], "NullOption": "NON_NULLS_ONLY" } @@ -5252,24 +6338,24 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "d3e94719-78fa-4373-9238-fadfd54cd36d", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "c8f84091-fe92-44e1-81f7-7961cd2b83ea" + "c8b8842d-dddd-44a8-b0f4-b70786151aee" ] } ] } }, - "Status": "DISABLED", + "Status": "ENABLED", "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "ec19e722-20c7-4f14-a09b-cb132abc4775", + "FilterGroupId": "9f07bb12-a89b-4f92-9775-528d218d51da", "Filters": [ { "CategoryFilter": { - "FilterId": "dc076d44-580c-4196-af17-fc46f83371d3", + "FilterId": "80825dbe-f229-4723-824f-06d44bc4f737", "Column": { "DataSetIdentifier": "circulation_view", "ColumnName": "License" @@ -5277,9 +6363,7 @@ "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "CategoryValues": [ - "Open Access" - ], + "SelectAllOptions": "FILTER_ALL_VALUES", "NullOption": "NON_NULLS_ONLY" } } @@ -5290,24 +6374,21 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", - "Scope": "SELECTED_VISUALS", - "VisualIds": [ - "c8f84091-fe92-44e1-81f7-7961cd2b83ea" - ] + "SheetId": "a9e410d9-f4c6-4bbd-95af-e570e97258d3", + "Scope": "ALL_VISUALS" } ] } }, "Status": "ENABLED", - "CrossDataset": "SINGLE_DATASET" + "CrossDataset": "ALL_DATASETS" }, { - "FilterGroupId": "9388b5e4-009f-4de9-86e0-996c3c354dc8", + "FilterGroupId": "409bb2e6-466d-4acd-800b-8e5e5178aaf4", "Filters": [ { "CategoryFilter": { - "FilterId": "3ed75567-b33c-4350-ac18-6c77c75c8651", + "FilterId": "445981f5-637b-4e78-97ed-8d2826f94f0f", "Column": { "DataSetIdentifier": "circulation_view", "ColumnName": "medium" @@ -5315,9 +6396,7 @@ "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "CategoryValues": [ - "Book" - ], + "SelectAllOptions": "FILTER_ALL_VALUES", "NullOption": "NON_NULLS_ONLY" } } @@ -5328,10 +6407,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "a9e410d9-f4c6-4bbd-95af-e570e97258d3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "744313ed-de25-4af0-b139-83daf2b82c5b" + "3fc88d23-c9f5-44df-978c-75b855d44bba" ] } ] @@ -5341,24 +6420,22 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "8bc38467-b5ce-469f-aab3-8eecb62d9625", + "FilterGroupId": "10f7099b-634c-4b2a-ae45-a7fee7cf2488", "Filters": [ { - "CategoryFilter": { - "FilterId": "cbd8064a-6534-475d-b165-6f34dea8314a", + "RelativeDatesFilter": { + "FilterId": "2e7ed53b-2d4d-4be7-9d4a-4fa7063f4113", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" + "ColumnName": "time_stamp" }, - "Configuration": { - "FilterListConfiguration": { - "MatchOperator": "CONTAINS", - "CategoryValues": [ - "circulation_manager_check_out" - ], - "NullOption": "NON_NULLS_ONLY" - } - } + "AnchorDateConfiguration": { + "AnchorOption": "NOW" + }, + "MinimumGranularity": "DAY", + "TimeGranularity": "YEAR", + "RelativeDateType": "PREVIOUS", + "NullOption": "NON_NULLS_ONLY" } } ], @@ -5366,27 +6443,8 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", - "Scope": "SELECTED_VISUALS", - "VisualIds": [ - "c8f84091-fe92-44e1-81f7-7961cd2b83ea", - "e62cf0c7-5811-46fb-a67f-50302906f3de", - "aad5b850-72ae-4070-97e0-41e707cb2578", - "1aff8e05-147d-4738-9e8f-38dece666b5a", - "0eddfeb4-9130-4845-9ef8-8e38a9dc5154", - "0355e91f-bd1f-4f78-a5c7-b817444f849a", - "bb3925f8-38b1-4ca9-bc10-a2e37923c77a", - "c5e5aa76-1381-453f-9b17-4e25c0b71bba", - "edb8bd31-faf9-4ce5-b92a-9b46b3ef8b4b", - "76f3c4ec-e5be-4118-a6c8-5fc08ba5ae46", - "66b253e5-dc34-4b34-956b-bbc9248ba115", - "4d07fe1e-66d6-475b-9c07-052fbc224553", - "a2ea45ca-199c-451a-a16e-7c5ae0bd94ed", - "e2b3323e-0e9f-47ef-8854-b4a9614acc5a", - "135bef77-927e-41f8-b23e-9d4aa82bf627", - "3c89e0a5-7670-4edd-a230-9445e16dbfd5", - "9df465dd-cd5b-4e7f-aecb-d96e25ee8bf2" - ] + "SheetId": "a9e410d9-f4c6-4bbd-95af-e570e97258d3", + "Scope": "ALL_VISUALS" } ] } @@ -5395,21 +6453,19 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "e2b8b93d-5b7b-4df7-80e2-af7a9376908d", + "FilterGroupId": "b4759bc1-81f4-4675-8fe5-35c2617d3eda", "Filters": [ { "CategoryFilter": { - "FilterId": "ed2f6277-7a8a-4156-9f75-0dd0d3fc4dd8", + "FilterId": "6028293b-b051-4fc4-8f75-5a3b75fcfc3e", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" + "ColumnName": "title" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "CategoryValues": [ - "circulation_manager_hold_place" - ], + "SelectAllOptions": "FILTER_ALL_VALUES", "NullOption": "NON_NULLS_ONLY" } } @@ -5420,10 +6476,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "a9e410d9-f4c6-4bbd-95af-e570e97258d3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "744313ed-de25-4af0-b139-83daf2b82c5b" + "3fc88d23-c9f5-44df-978c-75b855d44bba" ] } ] @@ -5433,21 +6489,19 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "f245dc86-0790-4fd6-ae02-55e14b22f329", + "FilterGroupId": "104a9b38-7743-4ff9-a4c1-68e86a561683", "Filters": [ { "CategoryFilter": { - "FilterId": "cc4abd48-28a8-4fbf-84a7-540487bff709", + "FilterId": "2a54c661-7b10-447e-b29e-a10f5879cee7", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" + "ColumnName": "library_name" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "CategoryValues": [ - "circulation_manager_hold_place" - ], + "SelectAllOptions": "FILTER_ALL_VALUES", "NullOption": "NON_NULLS_ONLY" } } @@ -5458,10 +6512,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "ded6b98a-5295-4595-82f2-8e3d1df3b0e3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "007a32cd-9bea-4cf3-ac2b-20b1aff82bf4" + "c1f917cf-f6a3-4186-869f-2053e84b5ebc" ] } ] @@ -5471,21 +6525,19 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "c366bb94-1e49-4dbb-9409-62a02bda9d57", + "FilterGroupId": "69994df4-bcb6-4a58-acb9-5f3d2456d870", "Filters": [ { "CategoryFilter": { - "FilterId": "4f68ee03-12ae-41d7-ad57-a660bcb4e572", + "FilterId": "c561d8c2-87b8-41c1-9fd0-ad63299281d0", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "medium" + "ColumnName": "title" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "CategoryValues": [ - "Book" - ], + "SelectAllOptions": "FILTER_ALL_VALUES", "NullOption": "NON_NULLS_ONLY" } } @@ -5496,34 +6548,32 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "ded6b98a-5295-4595-82f2-8e3d1df3b0e3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "9df465dd-cd5b-4e7f-aecb-d96e25ee8bf2" + "c1f917cf-f6a3-4186-869f-2053e84b5ebc" ] } ] } }, - "Status": "DISABLED", + "Status": "ENABLED", "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "d9128fa7-f42d-46d6-94d9-5216c734b9c3", + "FilterGroupId": "2c306b18-cc86-4684-8e87-170648793387", "Filters": [ { "CategoryFilter": { - "FilterId": "bb390f8f-4c3a-4a97-b7cc-0942aabb30df", + "FilterId": "4c4a93b1-dc82-403a-b59e-18a461300f15", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "License" + "ColumnName": "audience" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "CategoryValues": [ - "Open Access" - ], + "SelectAllOptions": "FILTER_ALL_VALUES", "NullOption": "NON_NULLS_ONLY" } } @@ -5534,10 +6584,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "ded6b98a-5295-4595-82f2-8e3d1df3b0e3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "9df465dd-cd5b-4e7f-aecb-d96e25ee8bf2" + "c1f917cf-f6a3-4186-869f-2053e84b5ebc" ] } ] @@ -5547,21 +6597,19 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "0535c4f8-4dab-4668-878d-cf3f87e1331c", + "FilterGroupId": "89e72fb0-22aa-40f8-a991-96926dc861ff", "Filters": [ { "CategoryFilter": { - "FilterId": "a5023978-ff81-47a8-838c-2e7c36c992a3", + "FilterId": "5e507833-7683-49cf-9bef-eaa57a67916f", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "License" + "ColumnName": "medium" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "CategoryValues": [ - "Open Access" - ], + "SelectAllOptions": "FILTER_ALL_VALUES", "NullOption": "NON_NULLS_ONLY" } } @@ -5572,67 +6620,32 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "ded6b98a-5295-4595-82f2-8e3d1df3b0e3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "9df465dd-cd5b-4e7f-aecb-d96e25ee8bf2" + "c1f917cf-f6a3-4186-869f-2053e84b5ebc" ] } ] } }, - "Status": "DISABLED", - "CrossDataset": "SINGLE_DATASET" - }, - { - "FilterGroupId": "53ca038a-deb8-4f61-ba5c-c2ca886cb019", - "Filters": [ - { - "CategoryFilter": { - "FilterId": "c726bb42-5244-44d3-9590-40c61603e1b8", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "library_name" - }, - "Configuration": { - "CustomFilterListConfiguration": { - "MatchOperator": "CONTAINS", - "SelectAllOptions": "FILTER_ALL_VALUES", - "NullOption": "NON_NULLS_ONLY" - } - } - } - } - ], - "ScopeConfiguration": { - "SelectedSheets": { - "SheetVisualScopingConfigurations": [ - { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", - "Scope": "ALL_VISUALS" - } - ] - } - }, "Status": "ENABLED", - "CrossDataset": "ALL_DATASETS" + "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "0d7a7777-0308-4b7e-9ac3-fa13a045cc7c", + "FilterGroupId": "cf860753-66f8-4796-9405-c9e4dc2028ea", "Filters": [ { "CategoryFilter": { - "FilterId": "13b036f3-ed35-442b-b149-de36147bf1f6", + "FilterId": "a199fae1-68d5-47d2-9143-a3820ed9da80", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" + "ColumnName": "distributor" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "CategoryValues": [ - "circulation_manager_check_out" - ], + "SelectAllOptions": "FILTER_ALL_VALUES", "NullOption": "NON_NULLS_ONLY" } } @@ -5643,10 +6656,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "e853621f-c297-4b06-8080-613417909e8a", + "SheetId": "ded6b98a-5295-4595-82f2-8e3d1df3b0e3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "112075dc-0e4f-41cb-8910-bf9852d1d81f" + "c1f917cf-f6a3-4186-869f-2053e84b5ebc" ] } ] @@ -5656,22 +6669,19 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "4e911b95-3650-4b71-857e-a3b4964bd857", + "FilterGroupId": "5773d9a2-e2c8-4b93-b6ff-89e6ac0fb015", "Filters": [ { "CategoryFilter": { - "FilterId": "aef3c3fa-f753-4cc2-99a7-d8e01089c743", + "FilterId": "9e01f07e-2adb-416b-8231-3e18fbae26cd", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" + "ColumnName": "language" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "CategoryValues": [ - "circulation_manager_check_out", - "circulation_manager_hold_place" - ], + "SelectAllOptions": "FILTER_ALL_VALUES", "NullOption": "NON_NULLS_ONLY" } } @@ -5682,14 +6692,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "e853621f-c297-4b06-8080-613417909e8a", + "SheetId": "ded6b98a-5295-4595-82f2-8e3d1df3b0e3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "a6b76673-2e71-4e02-9225-20c02ed9e933", - "112075dc-0e4f-41cb-8910-bf9852d1d81f", - "9dcded04-c08a-4bfe-a579-429985f03418", - "b7a27855-6818-4db8-a19d-1f628caf29f4", - "28b665e7-6c3d-4a4d-ab09-b366e8423c11" + "c1f917cf-f6a3-4186-869f-2053e84b5ebc" ] } ] @@ -5699,64 +6705,22 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "a90cf133-6f63-4c48-b69f-790773a03af2", - "Filters": [ - { - "TimeRangeFilter": { - "FilterId": "01049847-22f7-4ac3-8f9e-73d0a50bd022", - "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "LocalTime" - }, - "IncludeMinimum": false, - "IncludeMaximum": false, - "RangeMinimumValue": { - "RollingDate": { - "Expression": "addDateTime(-1, 'SS', truncDate('YYYY', now()))" - } - }, - "RangeMaximumValue": { - "RollingDate": { - "Expression": "truncDate('DD', now())" - } - }, - "NullOption": "NON_NULLS_ONLY", - "TimeGranularity": "DAY" - } - } - ], - "ScopeConfiguration": { - "SelectedSheets": { - "SheetVisualScopingConfigurations": [ - { - "SheetId": "e853621f-c297-4b06-8080-613417909e8a", - "Scope": "ALL_VISUALS" - } - ] - } - }, - "Status": "ENABLED", - "CrossDataset": "ALL_DATASETS" - }, - { - "FilterGroupId": "6921a93c-b875-434f-94d9-c413ea6fab3b", + "FilterGroupId": "618eef95-10b5-4a82-99c9-dd6d226c0bc1", "Filters": [ { - "CategoryFilter": { - "FilterId": "4850f956-b862-49de-a3d5-ae50684917a8", + "RelativeDatesFilter": { + "FilterId": "3a03538b-8204-49f2-bf63-18c3e4353c2c", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" + "ColumnName": "time_stamp" }, - "Configuration": { - "FilterListConfiguration": { - "MatchOperator": "CONTAINS", - "CategoryValues": [ - "circulation_manager_check_out" - ], - "NullOption": "NON_NULLS_ONLY" - } - } + "AnchorDateConfiguration": { + "AnchorOption": "NOW" + }, + "MinimumGranularity": "DAY", + "TimeGranularity": "YEAR", + "RelativeDateType": "NOW", + "NullOption": "NON_NULLS_ONLY" } } ], @@ -5764,10 +6728,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "e853621f-c297-4b06-8080-613417909e8a", + "SheetId": "ded6b98a-5295-4595-82f2-8e3d1df3b0e3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "a6b76673-2e71-4e02-9225-20c02ed9e933" + "c1f917cf-f6a3-4186-869f-2053e84b5ebc" ] } ] @@ -5777,21 +6741,20 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "bb6cc004-df35-47f7-912b-6e324c71c6c2", + "FilterGroupId": "cf2d2db9-dc6f-4662-a62e-8b2116c2e3de", "Filters": [ { "CategoryFilter": { - "FilterId": "4cc92c07-b2cd-4984-b1f3-1aee80d0a54e", + "FilterId": "05379214-23dd-4e74-80e8-05141fa02ebe", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "Event Short Name" + "ColumnName": "event_type" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", "CategoryValues": [ - "Check Out", - "Hold" + "circulation_manager_hold_place" ], "NullOption": "NON_NULLS_ONLY" } @@ -5803,10 +6766,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "e853621f-c297-4b06-8080-613417909e8a", + "SheetId": "6a460b10-9f34-4596-8eb5-c9eb37abd375", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "9fe69450-8395-4345-96c2-a11635454852" + "0aa45d09-a569-44d8-a725-d97c03462168" ] } ] @@ -5816,14 +6779,14 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "712c4604-022a-4c57-93df-540a09025256", + "FilterGroupId": "1e8d7efe-86bf-4d41-8b05-05a33778801c", "Filters": [ { "CategoryFilter": { - "FilterId": "5685e651-2407-4f48-9863-95ef08a213b5", + "FilterId": "d721b535-8e71-469d-b18d-ae047630abb3", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "library_name" + "ColumnName": "author" }, "Configuration": { "FilterListConfiguration": { @@ -5839,10 +6802,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "e853621f-c297-4b06-8080-613417909e8a", + "SheetId": "ded6b98a-5295-4595-82f2-8e3d1df3b0e3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "a6b76673-2e71-4e02-9225-20c02ed9e933" + "c1f917cf-f6a3-4186-869f-2053e84b5ebc" ] } ] @@ -5852,22 +6815,19 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "8072932a-1a90-4eb8-ab0b-d2a969c6e4f6", + "FilterGroupId": "8ac4dafc-9d12-4a4f-88e9-29434608c248", "Filters": [ { "CategoryFilter": { - "FilterId": "a7c4538a-be56-4ace-a096-e83fc186f51f", + "FilterId": "2810c06d-055b-427c-b047-9d2f6a0164b8", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "Event Short Name" + "ColumnName": "collection_name" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "CategoryValues": [ - "Check Out", - "Hold" - ], + "SelectAllOptions": "FILTER_ALL_VALUES", "NullOption": "NON_NULLS_ONLY" } } @@ -5878,10 +6838,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "e853621f-c297-4b06-8080-613417909e8a", + "SheetId": "ded6b98a-5295-4595-82f2-8e3d1df3b0e3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "eba72d73-f723-4434-895a-2aefd7b947c2" + "c1f917cf-f6a3-4186-869f-2053e84b5ebc" ] } ] @@ -5891,21 +6851,19 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "45d99c46-2d50-4322-9b2c-a6faba95f653", + "FilterGroupId": "fd99d5ee-4b3d-4db9-b976-290b5534948f", "Filters": [ { "CategoryFilter": { - "FilterId": "8cb28f44-8760-4a9b-ba70-1cb13b96e4f0", + "FilterId": "b2df559d-25ad-40b1-807b-db61d403bd97", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "event_type" + "ColumnName": "License" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "CategoryValues": [ - "circulation_manager_check_out" - ], + "SelectAllOptions": "FILTER_ALL_VALUES", "NullOption": "NON_NULLS_ONLY" } } @@ -5916,10 +6874,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "e853621f-c297-4b06-8080-613417909e8a", + "SheetId": "ded6b98a-5295-4595-82f2-8e3d1df3b0e3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "b7a27855-6818-4db8-a19d-1f628caf29f4" + "c1f917cf-f6a3-4186-869f-2053e84b5ebc" ] } ] @@ -5929,11 +6887,11 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "9be666a7-28b2-42f8-8afb-ee10d0d24aea", + "FilterGroupId": "51cacf01-6a5f-4a5a-8917-a90a8d750c12", "Filters": [ { "CategoryFilter": { - "FilterId": "2457c00e-f757-4dc5-ac26-e0fff80e2bba", + "FilterId": "e791b77c-2b8a-4ad4-a99e-049bbb98ea27", "Column": { "DataSetIdentifier": "circulation_view", "ColumnName": "event_type" @@ -5942,7 +6900,7 @@ "FilterListConfiguration": { "MatchOperator": "CONTAINS", "CategoryValues": [ - "circulation_manager_check_out" + "circulation_manager_hold_place" ], "NullOption": "NON_NULLS_ONLY" } @@ -5954,10 +6912,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "e853621f-c297-4b06-8080-613417909e8a", + "SheetId": "dcd0f6be-df96-4fb5-b5ac-597f57137eb9", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "28b665e7-6c3d-4a4d-ab09-b366e8423c11" + "154e8c5c-f205-4dd7-8908-d868caa509cb" ] } ] @@ -5967,19 +6925,21 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "15946991-9b07-4f8e-ba53-d2f99fee054e", + "FilterGroupId": "c08f29b6-c642-49ad-b139-9858de6b6786", "Filters": [ { "CategoryFilter": { - "FilterId": "8aafe0be-67ff-4ea3-956c-f760e9a8dcc2", + "FilterId": "82392d93-f534-4be9-a59d-aa4df19c2b35", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "library_name" + "ColumnName": "License" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "SelectAllOptions": "FILTER_ALL_VALUES", + "CategoryValues": [ + "Licensed" + ], "NullOption": "NON_NULLS_ONLY" } } @@ -5990,10 +6950,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "e853621f-c297-4b06-8080-613417909e8a", + "SheetId": "6a460b10-9f34-4596-8eb5-c9eb37abd375", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "28b665e7-6c3d-4a4d-ab09-b366e8423c11" + "f1a6cdab-83a4-4e55-8eab-3741f744e2e4" ] } ] @@ -6003,11 +6963,11 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "9f07bb12-a89b-4f92-9775-528d218d51da", + "FilterGroupId": "41094c0d-9ff0-47e1-adf3-53454ecca957", "Filters": [ { "CategoryFilter": { - "FilterId": "80825dbe-f229-4723-824f-06d44bc4f737", + "FilterId": "083e386b-3eef-42fd-9798-6984a9a901f6", "Column": { "DataSetIdentifier": "circulation_view", "ColumnName": "License" @@ -6015,7 +6975,9 @@ "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "SelectAllOptions": "FILTER_ALL_VALUES", + "CategoryValues": [ + "Licensed" + ], "NullOption": "NON_NULLS_ONLY" } } @@ -6026,29 +6988,34 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "59738200-c698-4470-8d60-cd8d0d55e124", - "Scope": "ALL_VISUALS" + "SheetId": "dcd0f6be-df96-4fb5-b5ac-597f57137eb9", + "Scope": "SELECTED_VISUALS", + "VisualIds": [ + "49142318-25be-4aa0-bdc9-d107d9f40921" + ] } ] } }, "Status": "ENABLED", - "CrossDataset": "ALL_DATASETS" + "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "409bb2e6-466d-4acd-800b-8e5e5178aaf4", + "FilterGroupId": "f00bc4b3-25ba-4f9c-82bf-f00673e4ec61", "Filters": [ { "CategoryFilter": { - "FilterId": "445981f5-637b-4e78-97ed-8d2826f94f0f", + "FilterId": "0555c98e-480b-4f8f-8257-3f5db6c56d09", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "medium" + "ColumnName": "event_type" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "SelectAllOptions": "FILTER_ALL_VALUES", + "CategoryValues": [ + "circulation_manager_check_out" + ], "NullOption": "NON_NULLS_ONLY" } } @@ -6059,10 +7026,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "59738200-c698-4470-8d60-cd8d0d55e124", + "SheetId": "d3e94719-78fa-4373-9238-fadfd54cd36d", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "3391b017-8612-47a0-a446-16fb3a0018ea" + "244f9e06-857f-4113-a603-82c461fefa0c" ] } ] @@ -6072,21 +7039,20 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "1fb30ce2-020a-4bc0-947a-2c5348907ac6", + "FilterGroupId": "9a1d5abd-a078-4a5b-b5b7-6f8ca0bab97c", "Filters": [ { "CategoryFilter": { - "FilterId": "b5a41f55-76e1-4d9c-b2ab-bd13f67adb5e", + "FilterId": "d2cad6f1-a7ea-4704-90af-7874ee6529c0", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "Event Short Name" + "ColumnName": "event_type" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", "CategoryValues": [ - "Check Out", - "Hold" + "circulation_manager_check_out" ], "NullOption": "NON_NULLS_ONLY" } @@ -6098,10 +7064,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "59738200-c698-4470-8d60-cd8d0d55e124", + "SheetId": "d3e94719-78fa-4373-9238-fadfd54cd36d", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "3391b017-8612-47a0-a446-16fb3a0018ea" + "fbb6cb96-93f8-4e78-950c-df429aee5496" ] } ] @@ -6111,29 +7077,24 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "10f7099b-634c-4b2a-ae45-a7fee7cf2488", + "FilterGroupId": "b9bbbc61-076b-4472-bebc-94d96387406c", "Filters": [ { - "TimeRangeFilter": { - "FilterId": "2e7ed53b-2d4d-4be7-9d4a-4fa7063f4113", + "CategoryFilter": { + "FilterId": "d7648dae-aeca-4256-8e56-a2b08fe83831", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "time_stamp" - }, - "IncludeMinimum": true, - "IncludeMaximum": true, - "RangeMinimumValue": { - "RollingDate": { - "Expression": "addDateTime(-1, 'YYYY', truncDate('YYYY', now()))" - } + "ColumnName": "event_type" }, - "RangeMaximumValue": { - "RollingDate": { - "Expression": "truncDate('DD', now())" + "Configuration": { + "FilterListConfiguration": { + "MatchOperator": "CONTAINS", + "CategoryValues": [ + "circulation_manager_check_out" + ], + "NullOption": "NON_NULLS_ONLY" } - }, - "NullOption": "NON_NULLS_ONLY", - "TimeGranularity": "DAY" + } } } ], @@ -6141,8 +7102,11 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "59738200-c698-4470-8d60-cd8d0d55e124", - "Scope": "ALL_VISUALS" + "SheetId": "d3e94719-78fa-4373-9238-fadfd54cd36d", + "Scope": "SELECTED_VISUALS", + "VisualIds": [ + "ffb7fb85-bf46-4f25-abd9-53da8aa741ef" + ] } ] } @@ -6151,19 +7115,21 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "5851bded-ae1e-4698-b25c-1ddb477968e8", + "FilterGroupId": "0fbd3226-f33f-4f43-8946-d354f2a46588", "Filters": [ { "CategoryFilter": { - "FilterId": "784533ed-2efa-4ea8-8df3-096d07276a76", + "FilterId": "222d9aba-29e0-4322-af07-e356a1e004cb", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "collection_name" + "ColumnName": "event_type" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "SelectAllOptions": "FILTER_ALL_VALUES", + "CategoryValues": [ + "circulation_manager_check_out" + ], "NullOption": "NON_NULLS_ONLY" } } @@ -6174,8 +7140,11 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "59738200-c698-4470-8d60-cd8d0d55e124", - "Scope": "ALL_VISUALS" + "SheetId": "d3e94719-78fa-4373-9238-fadfd54cd36d", + "Scope": "SELECTED_VISUALS", + "VisualIds": [ + "09402e88-46e9-423a-9cb0-5390786ea38b" + ] } ] } @@ -6184,19 +7153,21 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "b4759bc1-81f4-4675-8fe5-35c2617d3eda", + "FilterGroupId": "b6d88147-4695-49a2-a300-a4111775d139", "Filters": [ { "CategoryFilter": { - "FilterId": "6028293b-b051-4fc4-8f75-5a3b75fcfc3e", + "FilterId": "d191208c-1d51-404e-9992-ef11bdec33f3", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "title" + "ColumnName": "event_type" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "SelectAllOptions": "FILTER_ALL_VALUES", + "CategoryValues": [ + "circulation_manager_check_out" + ], "NullOption": "NON_NULLS_ONLY" } } @@ -6207,10 +7178,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "59738200-c698-4470-8d60-cd8d0d55e124", + "SheetId": "d3e94719-78fa-4373-9238-fadfd54cd36d", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "3391b017-8612-47a0-a446-16fb3a0018ea" + "41934a89-de94-44ce-8cc3-e7ed4c6db2c6" ] } ] @@ -6220,19 +7191,21 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "2c306b18-cc86-4684-8e87-170648793387", + "FilterGroupId": "6dddfe7f-9392-4c39-a82d-d003f91ea2d9", "Filters": [ { "CategoryFilter": { - "FilterId": "4c4a93b1-dc82-403a-b59e-18a461300f15", + "FilterId": "e178b2ec-f93c-4a90-877a-1eba5b9aaf77", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "audience" + "ColumnName": "event_type" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "SelectAllOptions": "FILTER_ALL_VALUES", + "CategoryValues": [ + "circulation_manager_check_out" + ], "NullOption": "NON_NULLS_ONLY" } } @@ -6243,10 +7216,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "7eed6ff1-8206-4ad5-8fa2-631286ddb4cc", + "SheetId": "d3e94719-78fa-4373-9238-fadfd54cd36d", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "379eac08-b1e1-40c0-8e8a-bd2c4205ddd7" + "0c9b3337-9dad-4501-8306-d0071e86c9d7" ] } ] @@ -6256,22 +7229,22 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "1e8d7efe-86bf-4d41-8b05-05a33778801c", + "FilterGroupId": "1f813c23-15c5-4ca8-a27b-a75e1541eb13", "Filters": [ { - "CategoryFilter": { - "FilterId": "d721b535-8e71-469d-b18d-ae047630abb3", + "RelativeDatesFilter": { + "FilterId": "d3191bff-a49d-4c14-a293-6189203367df", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "author" + "ColumnName": "time_stamp" }, - "Configuration": { - "FilterListConfiguration": { - "MatchOperator": "CONTAINS", - "SelectAllOptions": "FILTER_ALL_VALUES", - "NullOption": "NON_NULLS_ONLY" - } - } + "AnchorDateConfiguration": { + "AnchorOption": "NOW" + }, + "MinimumGranularity": "DAY", + "TimeGranularity": "YEAR", + "RelativeDateType": "NOW", + "NullOption": "NON_NULLS_ONLY" } } ], @@ -6279,11 +7252,8 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "7eed6ff1-8206-4ad5-8fa2-631286ddb4cc", - "Scope": "SELECTED_VISUALS", - "VisualIds": [ - "379eac08-b1e1-40c0-8e8a-bd2c4205ddd7" - ] + "SheetId": "6a460b10-9f34-4596-8eb5-c9eb37abd375", + "Scope": "ALL_VISUALS" } ] } @@ -6292,14 +7262,14 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "8ac4dafc-9d12-4a4f-88e9-29434608c248", + "FilterGroupId": "02827d6b-cc2c-455c-b158-dfca214e6b61", "Filters": [ { "CategoryFilter": { - "FilterId": "2810c06d-055b-427c-b047-9d2f6a0164b8", + "FilterId": "8ba6548e-65c0-4325-ac6d-e60a0a14ea23", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "collection_name" + "ColumnName": "library_name" }, "Configuration": { "FilterListConfiguration": { @@ -6315,11 +7285,8 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "7eed6ff1-8206-4ad5-8fa2-631286ddb4cc", - "Scope": "SELECTED_VISUALS", - "VisualIds": [ - "379eac08-b1e1-40c0-8e8a-bd2c4205ddd7" - ] + "SheetId": "d3e94719-78fa-4373-9238-fadfd54cd36d", + "Scope": "ALL_VISUALS" } ] } @@ -6328,19 +7295,22 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "cf860753-66f8-4796-9405-c9e4dc2028ea", + "FilterGroupId": "e246f3f7-4aa0-416d-847f-68cba7c287c8", "Filters": [ { "CategoryFilter": { - "FilterId": "a199fae1-68d5-47d2-9143-a3820ed9da80", + "FilterId": "16206326-8731-42b7-a74b-48d51ee4c022", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "distributor" + "ColumnName": "event_type" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "SelectAllOptions": "FILTER_ALL_VALUES", + "CategoryValues": [ + "circulation_manager_check_out", + "circulation_manager_hold_place" + ], "NullOption": "NON_NULLS_ONLY" } } @@ -6351,10 +7321,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "7eed6ff1-8206-4ad5-8fa2-631286ddb4cc", + "SheetId": "d3e94719-78fa-4373-9238-fadfd54cd36d", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "379eac08-b1e1-40c0-8e8a-bd2c4205ddd7" + "3f8b4ace-958f-4c9c-9f50-fc357ef72abb" ] } ] @@ -6364,14 +7334,14 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "5773d9a2-e2c8-4b93-b6ff-89e6ac0fb015", + "FilterGroupId": "02a20ed2-d62e-42c8-8295-25a1a2202bca", "Filters": [ { "CategoryFilter": { - "FilterId": "9e01f07e-2adb-416b-8231-3e18fbae26cd", + "FilterId": "146c7012-8a73-4f73-98a0-0f815da9be91", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "language" + "ColumnName": "library_name" }, "Configuration": { "FilterListConfiguration": { @@ -6387,10 +7357,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "7eed6ff1-8206-4ad5-8fa2-631286ddb4cc", + "SheetId": "a9e410d9-f4c6-4bbd-95af-e570e97258d3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "379eac08-b1e1-40c0-8e8a-bd2c4205ddd7" + "3fc88d23-c9f5-44df-978c-75b855d44bba" ] } ] @@ -6400,14 +7370,14 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "104a9b38-7743-4ff9-a4c1-68e86a561683", + "FilterGroupId": "5851bded-ae1e-4698-b25c-1ddb477968e8", "Filters": [ { "CategoryFilter": { - "FilterId": "2a54c661-7b10-447e-b29e-a10f5879cee7", + "FilterId": "784533ed-2efa-4ea8-8df3-096d07276a76", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "library_name" + "ColumnName": "collection_name" }, "Configuration": { "FilterListConfiguration": { @@ -6423,11 +7393,8 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "7eed6ff1-8206-4ad5-8fa2-631286ddb4cc", - "Scope": "SELECTED_VISUALS", - "VisualIds": [ - "379eac08-b1e1-40c0-8e8a-bd2c4205ddd7" - ] + "SheetId": "a9e410d9-f4c6-4bbd-95af-e570e97258d3", + "Scope": "ALL_VISUALS" } ] } @@ -6436,19 +7403,21 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "fd99d5ee-4b3d-4db9-b976-290b5534948f", + "FilterGroupId": "3916338b-70be-4e46-8c3f-2849e237870a", "Filters": [ { "CategoryFilter": { - "FilterId": "b2df559d-25ad-40b1-807b-db61d403bd97", + "FilterId": "93ed3b9b-3911-4ef8-90d6-a63ce6e6aed3", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "License" + "ColumnName": "event_type" }, "Configuration": { "FilterListConfiguration": { "MatchOperator": "CONTAINS", - "SelectAllOptions": "FILTER_ALL_VALUES", + "CategoryValues": [ + "circulation_manager_check_out" + ], "NullOption": "NON_NULLS_ONLY" } } @@ -6459,10 +7428,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "7eed6ff1-8206-4ad5-8fa2-631286ddb4cc", + "SheetId": "a9e410d9-f4c6-4bbd-95af-e570e97258d3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "379eac08-b1e1-40c0-8e8a-bd2c4205ddd7" + "3fc88d23-c9f5-44df-978c-75b855d44bba" ] } ] @@ -6472,14 +7441,14 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "69994df4-bcb6-4a58-acb9-5f3d2456d870", + "FilterGroupId": "fd20cd08-a1e2-4905-9963-cae8b7f0791c", "Filters": [ { "CategoryFilter": { - "FilterId": "c561d8c2-87b8-41c1-9fd0-ad63299281d0", + "FilterId": "064179f3-6921-4e2e-8c55-462e9cee2c53", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "title" + "ColumnName": "medium" }, "Configuration": { "FilterListConfiguration": { @@ -6495,10 +7464,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "7eed6ff1-8206-4ad5-8fa2-631286ddb4cc", + "SheetId": "a9e410d9-f4c6-4bbd-95af-e570e97258d3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "379eac08-b1e1-40c0-8e8a-bd2c4205ddd7" + "0491632c-1f33-4ef7-8775-e19df25b66dc" ] } ] @@ -6508,17 +7477,22 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "618eef95-10b5-4a82-99c9-dd6d226c0bc1", + "FilterGroupId": "c2add74d-2f30-4cfb-8b6f-b1c32b2305b0", "Filters": [ { - "TimeRangeFilter": { - "FilterId": "3a03538b-8204-49f2-bf63-18c3e4353c2c", + "CategoryFilter": { + "FilterId": "232ac4e1-f2ca-4c74-aa4e-2b7c439b5540", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "time_stamp" + "ColumnName": "title" }, - "NullOption": "NON_NULLS_ONLY", - "TimeGranularity": "MINUTE" + "Configuration": { + "FilterListConfiguration": { + "MatchOperator": "CONTAINS", + "SelectAllOptions": "FILTER_ALL_VALUES", + "NullOption": "NON_NULLS_ONLY" + } + } } } ], @@ -6526,10 +7500,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "7eed6ff1-8206-4ad5-8fa2-631286ddb4cc", + "SheetId": "a9e410d9-f4c6-4bbd-95af-e570e97258d3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "379eac08-b1e1-40c0-8e8a-bd2c4205ddd7" + "0491632c-1f33-4ef7-8775-e19df25b66dc" ] } ] @@ -6539,14 +7513,14 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "89e72fb0-22aa-40f8-a991-96926dc861ff", + "FilterGroupId": "411a0bbc-6221-4f53-bfd2-b7cbcae50de9", "Filters": [ { "CategoryFilter": { - "FilterId": "5e507833-7683-49cf-9bef-eaa57a67916f", + "FilterId": "59793f03-2c43-4f7b-8e11-efd3e40ead3c", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "medium" + "ColumnName": "library_name" }, "Configuration": { "FilterListConfiguration": { @@ -6562,10 +7536,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "7eed6ff1-8206-4ad5-8fa2-631286ddb4cc", + "SheetId": "a9e410d9-f4c6-4bbd-95af-e570e97258d3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "379eac08-b1e1-40c0-8e8a-bd2c4205ddd7" + "0491632c-1f33-4ef7-8775-e19df25b66dc" ] } ] @@ -6575,22 +7549,24 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "597c6e3a-5af5-4039-9499-45377d179d92", + "FilterGroupId": "5632a8db-303b-42a3-a4fe-f4326cfc9322", "Filters": [ { - "RelativeDatesFilter": { - "FilterId": "9f013a46-4a5e-47e7-8e83-1aeb1a67d0e0", + "CategoryFilter": { + "FilterId": "cad5dac1-a873-4c4f-b587-971c6fa0128d", "Column": { - "DataSetIdentifier": "patron_events", - "ColumnName": "time_stamp" - }, - "AnchorDateConfiguration": { - "AnchorOption": "NOW" + "DataSetIdentifier": "circulation_view", + "ColumnName": "event_type" }, - "MinimumGranularity": "DAY", - "TimeGranularity": "YEAR", - "RelativeDateType": "THIS", - "NullOption": "NON_NULLS_ONLY" + "Configuration": { + "FilterListConfiguration": { + "MatchOperator": "CONTAINS", + "CategoryValues": [ + "circulation_manager_hold_place" + ], + "NullOption": "NON_NULLS_ONLY" + } + } } } ], @@ -6598,10 +7574,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "a9e410d9-f4c6-4bbd-95af-e570e97258d3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "a64b999e-669d-4b3d-8a89-9bbe64242f0a" + "0491632c-1f33-4ef7-8775-e19df25b66dc" ] } ] @@ -6611,17 +7587,22 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "f0838756-86b0-4a3c-8ce0-3a72d49fb723", + "FilterGroupId": "dfde271a-457c-45af-871b-cb6d725d2a4f", "Filters": [ { - "TimeRangeFilter": { - "FilterId": "4a834b3b-243f-40fb-a6e9-7cd0c16bf660", + "CategoryFilter": { + "FilterId": "ef5c1574-6ef9-4be5-a457-4c0b8c65d91f", "Column": { "DataSetIdentifier": "circulation_view", - "ColumnName": "time_stamp" + "ColumnName": "event_type" }, - "NullOption": "NON_NULLS_ONLY", - "TimeGranularity": "MINUTE" + "Configuration": { + "FilterListConfiguration": { + "MatchOperator": "CONTAINS", + "SelectAllOptions": "FILTER_ALL_VALUES", + "NullOption": "NON_NULLS_ONLY" + } + } } } ], @@ -6629,10 +7610,10 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", + "SheetId": "ded6b98a-5295-4595-82f2-8e3d1df3b0e3", "Scope": "SELECTED_VISUALS", "VisualIds": [ - "0355e91f-bd1f-4f78-a5c7-b817444f849a" + "c1f917cf-f6a3-4186-869f-2053e84b5ebc" ] } ] @@ -6642,21 +7623,21 @@ "CrossDataset": "SINGLE_DATASET" }, { - "FilterGroupId": "7b861996-7bfe-4014-bf86-1ab9535c0e6f_9f2df4a8-21e2-4aa4-adcd-3fb32e86c4ba", + "FilterGroupId": "6ed8da72-5a2a-4937-afe8-7f8edc1920b2", "Filters": [ { "RelativeDatesFilter": { - "FilterId": "512d8349-aea5-4bf4-8f34-6c909e490fc6", + "FilterId": "0cb94d00-8b16-4eab-9da7-b42fcc80b1e0", "Column": { - "DataSetIdentifier": "circulation_view", - "ColumnName": "LocalTime" + "DataSetIdentifier": "patron_events", + "ColumnName": "time_stamp" }, "AnchorDateConfiguration": { "AnchorOption": "NOW" }, "MinimumGranularity": "DAY", "TimeGranularity": "YEAR", - "RelativeDateType": "THIS", + "RelativeDateType": "NOW", "NullOption": "NON_NULLS_ONLY" } } @@ -6665,14 +7646,17 @@ "SelectedSheets": { "SheetVisualScopingConfigurations": [ { - "SheetId": "f60b08d2-ae5d-446c-a991-83f6551e49c4", - "Scope": "ALL_VISUALS" + "SheetId": "f36d743f-7a14-45ac-bc1f-28401f7c238a", + "Scope": "SELECTED_VISUALS", + "VisualIds": [ + "86e702a7-fb5f-4606-9d32-63b166785fe1" + ] } ] } }, "Status": "ENABLED", - "CrossDataset": "ALL_DATASETS" + "CrossDataset": "SINGLE_DATASET" } ], "ColumnConfigurations": [ @@ -6694,6 +7678,19 @@ }, "Role": "DIMENSION" }, + { + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "Event Short Name" + }, + "FormatConfiguration": { + "StringFormatConfiguration": { + "NullValueFormatConfiguration": { + "NullString": "null" + } + } + } + }, { "Column": { "DataSetIdentifier": "circulation_view", @@ -6720,6 +7717,13 @@ } } }, + { + "Column": { + "DataSetIdentifier": "circulation_view", + "ColumnName": "fiction" + }, + "Role": "DIMENSION" + }, { "Column": { "DataSetIdentifier": "circulation_view",