├── .bpa ├── bpa-rules-report.json ├── bpa-rules-semanticmodel.json └── bpa.ps1 ├── .github ├── copilot-instructions.md └── workflows │ ├── bpa.yml │ └── deploy.yml ├── .gitignore ├── .resources ├── templateReport │ ├── .platform │ ├── StaticResources │ │ ├── RegisteredResources │ │ │ └── Company_Blue6995445076846206.json │ │ └── SharedResources │ │ │ └── BaseThemes │ │ │ └── CY24SU10.json │ ├── definition.pbir │ └── definition │ │ ├── pages │ │ ├── 3cf1cedb01b04a3b132e │ │ │ ├── page.json │ │ │ └── visuals │ │ │ │ ├── 19eb7a5feb78ab3943a8 │ │ │ │ └── visual.json │ │ │ │ ├── 46e229f0760010499968 │ │ │ │ └── visual.json │ │ │ │ ├── 5868707ac858bcbe007a │ │ │ │ └── visual.json │ │ │ │ ├── 611011a7ca2045d99da7 │ │ │ │ └── visual.json │ │ │ │ ├── 74861fcc7ec0c9e97209 │ │ │ │ └── visual.json │ │ │ │ ├── _logo │ │ │ │ ├── mobile.json │ │ │ │ └── visual.json │ │ │ │ ├── _title │ │ │ │ └── visual.json │ │ │ │ └── e74ca53c30d4d6ecd065 │ │ │ │ ├── mobile.json │ │ │ │ └── visual.json │ │ └── pages.json │ │ ├── report.json │ │ └── version.json ├── themes │ ├── fabric_48_color.svg │ ├── theme-black.json │ ├── theme-blue.json │ └── theme-purple.json └── tmdl │ ├── Calendar.tmdl │ └── Time Intelligence.tmdl ├── README.md └── src ├── Model01.SemanticModel ├── .pbi │ └── editorSettings.json ├── .platform ├── TMDLScripts │ ├── .pbi │ │ └── tmdlScripts.json │ ├── Script 1.tmdl │ └── Script 2.tmdl ├── definition.pbism ├── definition │ ├── cultures │ │ ├── en-US.tmdl │ │ └── pt-PT.tmdl │ ├── database.tmdl │ ├── expressions.tmdl │ ├── model.tmdl │ ├── perspectives │ │ └── Sales.tmdl │ ├── relationships.tmdl │ ├── roles │ │ ├── Store - Canada.tmdl │ │ └── Store - United States.tmdl │ └── tables │ │ ├── About.tmdl │ │ ├── Calendar.tmdl │ │ ├── Customer.tmdl │ │ ├── Field Parameter.tmdl │ │ ├── Product.tmdl │ │ ├── Sales.tmdl │ │ ├── Store.tmdl │ │ └── Time Intelligence.tmdl └── diagramLayout.json ├── Model02.SemanticModel ├── .pbi │ └── editorSettings.json ├── .platform ├── definition.pbism ├── definition │ ├── cultures │ │ └── en-US.tmdl │ ├── database.tmdl │ ├── expressions.tmdl │ ├── model.tmdl │ ├── relationships.tmdl │ └── tables │ │ ├── Categories.tmdl │ │ ├── Customers.tmdl │ │ ├── DateTableTemplate_8340ca1c-13cc-417d-881d-176281d89ad3.tmdl │ │ ├── LocalDateTable_7ef188e6-2db9-4290-aa60-6d6d185c654f.tmdl │ │ ├── LocalDateTable_cde5d4de-d289-40fd-b18f-100e83821e85.tmdl │ │ ├── LocalDateTable_d6647606-e75a-42be-a141-5b5dc67aebdf.tmdl │ │ ├── Order_Details.tmdl │ │ ├── Orders.tmdl │ │ └── Products.tmdl └── diagramLayout.json ├── Model03.SemanticModel ├── .pbi │ └── editorSettings.json ├── .platform ├── DAXQueries │ ├── .pbi │ │ └── daxQueries.json │ └── Query 1.dax ├── definition.pbism ├── definition │ ├── cultures │ │ └── en-US.tmdl │ ├── database.tmdl │ ├── expressions.tmdl │ ├── model.tmdl │ ├── relationships.tmdl │ └── tables │ │ ├── Calendar.tmdl │ │ ├── Customer.tmdl │ │ ├── Product.tmdl │ │ ├── Sales.tmdl │ │ └── Store.tmdl └── diagramLayout.json ├── Report01.Report ├── .platform ├── StaticResources │ ├── RegisteredResources │ │ └── Company_Blue6995445076846206.json │ └── SharedResources │ │ └── BaseThemes │ │ └── CY24SU10.json ├── definition.pbir └── definition │ ├── bookmarks │ ├── 429f324a76d806abde60.bookmark.json │ ├── b743d6c70b5ea486607b.bookmark.json │ └── bookmarks.json │ ├── pages │ ├── 3cf1cedb01b04a3b132e │ │ ├── page.json │ │ └── visuals │ │ │ ├── 19eb7a5feb78ab3943a8 │ │ │ └── visual.json │ │ │ ├── 46e229f0760010499968 │ │ │ ├── mobile.json │ │ │ └── visual.json │ │ │ ├── 5868707ac858bcbe007a │ │ │ └── visual.json │ │ │ ├── 611011a7ca2045d99da7 │ │ │ └── visual.json │ │ │ ├── 74861fcc7ec0c9e97209 │ │ │ ├── mobile.json │ │ │ └── visual.json │ │ │ ├── _environment │ │ │ └── visual.json │ │ │ ├── _lastRefresh │ │ │ └── visual.json │ │ │ ├── _logo │ │ │ ├── mobile.json │ │ │ └── visual.json │ │ │ ├── _title │ │ │ └── visual.json │ │ │ └── e74ca53c30d4d6ecd065 │ │ │ ├── mobile.json │ │ │ └── visual.json │ └── pages.json │ ├── report.json │ └── version.json ├── Report01.pbip ├── Report02.Report ├── .platform ├── StaticResources │ ├── RegisteredResources │ │ └── Company_Green7643675511799916.json │ └── SharedResources │ │ └── BaseThemes │ │ └── CY24SU10.json ├── definition.pbir └── definition │ ├── bookmarks │ ├── 429f324a76d806abde60.bookmark.json │ ├── b743d6c70b5ea486607b.bookmark.json │ └── bookmarks.json │ ├── pages │ ├── 3cf1cedb01b04a3b132e │ │ ├── page.json │ │ └── visuals │ │ │ ├── 5868707ac858bcbe007a │ │ │ └── visual.json │ │ │ ├── 653b57e5c9ba254ec575 │ │ │ └── visual.json │ │ │ ├── _logo │ │ │ ├── mobile.json │ │ │ └── visual.json │ │ │ ├── _title │ │ │ └── visual.json │ │ │ └── e74ca53c30d4d6ecd065 │ │ │ ├── mobile.json │ │ │ └── visual.json │ ├── 622460703c313d16ed14 │ │ ├── page.json │ │ └── visuals │ │ │ ├── 4cc187dad0a650ac204c │ │ │ └── visual.json │ │ │ ├── 6f4541c00c904bc00a26 │ │ │ └── visual.json │ │ │ └── 885d3292b359c7b2da72 │ │ │ ├── mobile.json │ │ │ └── visual.json │ └── pages.json │ ├── report.json │ └── version.json ├── Report02.pbip ├── Report03.Report ├── .platform ├── StaticResources │ ├── RegisteredResources │ │ └── Company_Blue620697091731989.json │ └── SharedResources │ │ └── BaseThemes │ │ └── CY24SU10.json ├── definition.pbir └── definition │ ├── bookmarks │ ├── 429f324a76d806abde60.bookmark.json │ ├── b743d6c70b5ea486607b.bookmark.json │ └── bookmarks.json │ ├── pages │ ├── 3cf1cedb01b04a3b132e │ │ ├── page.json │ │ └── visuals │ │ │ ├── 22d579fb6e6269edbba7 │ │ │ └── visual.json │ │ │ ├── _logo │ │ │ ├── mobile.json │ │ │ └── visual.json │ │ │ └── _title │ │ │ └── visual.json │ └── pages.json │ ├── report.json │ └── version.json ├── Report03.pbip ├── Report04.Report ├── .platform ├── StaticResources │ ├── RegisteredResources │ │ └── Artboard_10897277198378641.png │ └── SharedResources │ │ ├── BaseThemes │ │ └── CY23SU04.json │ │ └── BuiltInThemes │ │ └── Bloom.json ├── definition.pbir └── definition │ ├── pages │ ├── 3dc12e426243950a56ac │ │ ├── page.json │ │ └── visuals │ │ │ ├── 2180995fdcb19474b0c5 │ │ │ └── visual.json │ │ │ ├── 3a699a23215d5d40a4ea │ │ │ └── visual.json │ │ │ ├── 3c7227206ccb713739a0 │ │ │ └── visual.json │ │ │ ├── 7a82dbc142e1d0094bea │ │ │ └── visual.json │ │ │ ├── 9f80f753e7205e03ce4d │ │ │ └── visual.json │ │ │ ├── ccdf64dbc5b1772d7a57 │ │ │ └── visual.json │ │ │ ├── cd73ee872b38221d15bc │ │ │ └── visual.json │ │ │ └── f62c629060c9242cd37d │ │ │ └── visual.json │ ├── 708d7c04691a88810062 │ │ ├── page.json │ │ └── visuals │ │ │ ├── 0bed6a1003555b8abe37 │ │ │ └── visual.json │ │ │ ├── 11aed89b23600c74a77c │ │ │ └── visual.json │ │ │ ├── 3f680da0ab2060e8e0a6 │ │ │ └── visual.json │ │ │ ├── 47a996f6d0b080c8c2d2 │ │ │ └── visual.json │ │ │ ├── 624d1cd33dddc2386da0 │ │ │ └── visual.json │ │ │ ├── 93cc8d94716a9ae59ec5 │ │ │ └── visual.json │ │ │ ├── bf97e9a16319c1cdb54b │ │ │ └── visual.json │ │ │ ├── c5e61b1a96220d09abcd │ │ │ └── visual.json │ │ │ └── e6c3dea7c9ba660d39c9 │ │ │ └── visual.json │ └── pages.json │ ├── report.json │ └── version.json ├── Report04.pbip ├── Report05.Report ├── .platform ├── StaticResources │ ├── RegisteredResources │ │ └── Company_Blue6995445076846206.json │ └── SharedResources │ │ └── BaseThemes │ │ └── CY24SU10.json ├── definition.pbir └── definition │ ├── bookmarks │ ├── 429f324a76d806abde60.bookmark.json │ ├── b743d6c70b5ea486607b.bookmark.json │ └── bookmarks.json │ ├── pages │ ├── 3cf1cedb01b04a3b132e │ │ ├── page.json │ │ └── visuals │ │ │ ├── 1a9a5a32f3dd5aa0d1c3 │ │ │ └── visual.json │ │ │ ├── _logo │ │ │ ├── mobile.json │ │ │ └── visual.json │ │ │ └── _title │ │ │ └── visual.json │ └── pages.json │ ├── report.json │ └── version.json ├── Report05.pbip ├── deploy.py └── parameter.yml /.bpa/bpa-rules-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.bpa/bpa-rules-report.json -------------------------------------------------------------------------------- /.bpa/bpa-rules-semanticmodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.bpa/bpa-rules-semanticmodel.json -------------------------------------------------------------------------------- /.bpa/bpa.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.bpa/bpa.ps1 -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/bpa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.github/workflows/bpa.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.resources/templateReport/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/.platform -------------------------------------------------------------------------------- /.resources/templateReport/StaticResources/RegisteredResources/Company_Blue6995445076846206.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/StaticResources/RegisteredResources/Company_Blue6995445076846206.json -------------------------------------------------------------------------------- /.resources/templateReport/StaticResources/SharedResources/BaseThemes/CY24SU10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/StaticResources/SharedResources/BaseThemes/CY24SU10.json -------------------------------------------------------------------------------- /.resources/templateReport/definition.pbir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/definition.pbir -------------------------------------------------------------------------------- /.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/page.json -------------------------------------------------------------------------------- /.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/19eb7a5feb78ab3943a8/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/19eb7a5feb78ab3943a8/visual.json -------------------------------------------------------------------------------- /.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/46e229f0760010499968/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/46e229f0760010499968/visual.json -------------------------------------------------------------------------------- /.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/5868707ac858bcbe007a/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/5868707ac858bcbe007a/visual.json -------------------------------------------------------------------------------- /.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/611011a7ca2045d99da7/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/611011a7ca2045d99da7/visual.json -------------------------------------------------------------------------------- /.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/74861fcc7ec0c9e97209/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/74861fcc7ec0c9e97209/visual.json -------------------------------------------------------------------------------- /.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/mobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/mobile.json -------------------------------------------------------------------------------- /.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/visual.json -------------------------------------------------------------------------------- /.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/_title/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/_title/visual.json -------------------------------------------------------------------------------- /.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/e74ca53c30d4d6ecd065/mobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/e74ca53c30d4d6ecd065/mobile.json -------------------------------------------------------------------------------- /.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/e74ca53c30d4d6ecd065/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/definition/pages/3cf1cedb01b04a3b132e/visuals/e74ca53c30d4d6ecd065/visual.json -------------------------------------------------------------------------------- /.resources/templateReport/definition/pages/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/definition/pages/pages.json -------------------------------------------------------------------------------- /.resources/templateReport/definition/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/definition/report.json -------------------------------------------------------------------------------- /.resources/templateReport/definition/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/templateReport/definition/version.json -------------------------------------------------------------------------------- /.resources/themes/fabric_48_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/themes/fabric_48_color.svg -------------------------------------------------------------------------------- /.resources/themes/theme-black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/themes/theme-black.json -------------------------------------------------------------------------------- /.resources/themes/theme-blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/themes/theme-blue.json -------------------------------------------------------------------------------- /.resources/themes/theme-purple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/themes/theme-purple.json -------------------------------------------------------------------------------- /.resources/tmdl/Calendar.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/tmdl/Calendar.tmdl -------------------------------------------------------------------------------- /.resources/tmdl/Time Intelligence.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/.resources/tmdl/Time Intelligence.tmdl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/README.md -------------------------------------------------------------------------------- /src/Model01.SemanticModel/.pbi/editorSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/.pbi/editorSettings.json -------------------------------------------------------------------------------- /src/Model01.SemanticModel/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/.platform -------------------------------------------------------------------------------- /src/Model01.SemanticModel/TMDLScripts/.pbi/tmdlScripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/TMDLScripts/.pbi/tmdlScripts.json -------------------------------------------------------------------------------- /src/Model01.SemanticModel/TMDLScripts/Script 1.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/TMDLScripts/Script 1.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/TMDLScripts/Script 2.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/TMDLScripts/Script 2.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition.pbism: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/definition.pbism -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition/cultures/en-US.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/definition/cultures/en-US.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition/cultures/pt-PT.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/definition/cultures/pt-PT.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition/database.tmdl: -------------------------------------------------------------------------------- 1 | database 2 | compatibilityLevel: 1601 3 | 4 | -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition/expressions.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/definition/expressions.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition/model.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/definition/model.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition/perspectives/Sales.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/definition/perspectives/Sales.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition/relationships.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/definition/relationships.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition/roles/Store - Canada.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/definition/roles/Store - Canada.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition/roles/Store - United States.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/definition/roles/Store - United States.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition/tables/About.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/definition/tables/About.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition/tables/Calendar.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/definition/tables/Calendar.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition/tables/Customer.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/definition/tables/Customer.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition/tables/Field Parameter.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/definition/tables/Field Parameter.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition/tables/Product.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/definition/tables/Product.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition/tables/Sales.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/definition/tables/Sales.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition/tables/Store.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/definition/tables/Store.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/definition/tables/Time Intelligence.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/definition/tables/Time Intelligence.tmdl -------------------------------------------------------------------------------- /src/Model01.SemanticModel/diagramLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model01.SemanticModel/diagramLayout.json -------------------------------------------------------------------------------- /src/Model02.SemanticModel/.pbi/editorSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model02.SemanticModel/.pbi/editorSettings.json -------------------------------------------------------------------------------- /src/Model02.SemanticModel/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model02.SemanticModel/.platform -------------------------------------------------------------------------------- /src/Model02.SemanticModel/definition.pbism: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model02.SemanticModel/definition.pbism -------------------------------------------------------------------------------- /src/Model02.SemanticModel/definition/cultures/en-US.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model02.SemanticModel/definition/cultures/en-US.tmdl -------------------------------------------------------------------------------- /src/Model02.SemanticModel/definition/database.tmdl: -------------------------------------------------------------------------------- 1 | database 2 | compatibilityLevel: 1567 3 | 4 | -------------------------------------------------------------------------------- /src/Model02.SemanticModel/definition/expressions.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model02.SemanticModel/definition/expressions.tmdl -------------------------------------------------------------------------------- /src/Model02.SemanticModel/definition/model.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model02.SemanticModel/definition/model.tmdl -------------------------------------------------------------------------------- /src/Model02.SemanticModel/definition/relationships.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model02.SemanticModel/definition/relationships.tmdl -------------------------------------------------------------------------------- /src/Model02.SemanticModel/definition/tables/Categories.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model02.SemanticModel/definition/tables/Categories.tmdl -------------------------------------------------------------------------------- /src/Model02.SemanticModel/definition/tables/Customers.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model02.SemanticModel/definition/tables/Customers.tmdl -------------------------------------------------------------------------------- /src/Model02.SemanticModel/definition/tables/DateTableTemplate_8340ca1c-13cc-417d-881d-176281d89ad3.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model02.SemanticModel/definition/tables/DateTableTemplate_8340ca1c-13cc-417d-881d-176281d89ad3.tmdl -------------------------------------------------------------------------------- /src/Model02.SemanticModel/definition/tables/LocalDateTable_7ef188e6-2db9-4290-aa60-6d6d185c654f.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model02.SemanticModel/definition/tables/LocalDateTable_7ef188e6-2db9-4290-aa60-6d6d185c654f.tmdl -------------------------------------------------------------------------------- /src/Model02.SemanticModel/definition/tables/LocalDateTable_cde5d4de-d289-40fd-b18f-100e83821e85.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model02.SemanticModel/definition/tables/LocalDateTable_cde5d4de-d289-40fd-b18f-100e83821e85.tmdl -------------------------------------------------------------------------------- /src/Model02.SemanticModel/definition/tables/LocalDateTable_d6647606-e75a-42be-a141-5b5dc67aebdf.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model02.SemanticModel/definition/tables/LocalDateTable_d6647606-e75a-42be-a141-5b5dc67aebdf.tmdl -------------------------------------------------------------------------------- /src/Model02.SemanticModel/definition/tables/Order_Details.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model02.SemanticModel/definition/tables/Order_Details.tmdl -------------------------------------------------------------------------------- /src/Model02.SemanticModel/definition/tables/Orders.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model02.SemanticModel/definition/tables/Orders.tmdl -------------------------------------------------------------------------------- /src/Model02.SemanticModel/definition/tables/Products.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model02.SemanticModel/definition/tables/Products.tmdl -------------------------------------------------------------------------------- /src/Model02.SemanticModel/diagramLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model02.SemanticModel/diagramLayout.json -------------------------------------------------------------------------------- /src/Model03.SemanticModel/.pbi/editorSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model03.SemanticModel/.pbi/editorSettings.json -------------------------------------------------------------------------------- /src/Model03.SemanticModel/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model03.SemanticModel/.platform -------------------------------------------------------------------------------- /src/Model03.SemanticModel/DAXQueries/.pbi/daxQueries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model03.SemanticModel/DAXQueries/.pbi/daxQueries.json -------------------------------------------------------------------------------- /src/Model03.SemanticModel/DAXQueries/Query 1.dax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model03.SemanticModel/DAXQueries/Query 1.dax -------------------------------------------------------------------------------- /src/Model03.SemanticModel/definition.pbism: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model03.SemanticModel/definition.pbism -------------------------------------------------------------------------------- /src/Model03.SemanticModel/definition/cultures/en-US.tmdl: -------------------------------------------------------------------------------- 1 | cultureInfo en-US 2 | 3 | -------------------------------------------------------------------------------- /src/Model03.SemanticModel/definition/database.tmdl: -------------------------------------------------------------------------------- 1 | database 2 | compatibilityLevel: 1601 3 | 4 | -------------------------------------------------------------------------------- /src/Model03.SemanticModel/definition/expressions.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model03.SemanticModel/definition/expressions.tmdl -------------------------------------------------------------------------------- /src/Model03.SemanticModel/definition/model.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model03.SemanticModel/definition/model.tmdl -------------------------------------------------------------------------------- /src/Model03.SemanticModel/definition/relationships.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model03.SemanticModel/definition/relationships.tmdl -------------------------------------------------------------------------------- /src/Model03.SemanticModel/definition/tables/Calendar.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model03.SemanticModel/definition/tables/Calendar.tmdl -------------------------------------------------------------------------------- /src/Model03.SemanticModel/definition/tables/Customer.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model03.SemanticModel/definition/tables/Customer.tmdl -------------------------------------------------------------------------------- /src/Model03.SemanticModel/definition/tables/Product.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model03.SemanticModel/definition/tables/Product.tmdl -------------------------------------------------------------------------------- /src/Model03.SemanticModel/definition/tables/Sales.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model03.SemanticModel/definition/tables/Sales.tmdl -------------------------------------------------------------------------------- /src/Model03.SemanticModel/definition/tables/Store.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model03.SemanticModel/definition/tables/Store.tmdl -------------------------------------------------------------------------------- /src/Model03.SemanticModel/diagramLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Model03.SemanticModel/diagramLayout.json -------------------------------------------------------------------------------- /src/Report01.Report/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/.platform -------------------------------------------------------------------------------- /src/Report01.Report/StaticResources/RegisteredResources/Company_Blue6995445076846206.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/StaticResources/RegisteredResources/Company_Blue6995445076846206.json -------------------------------------------------------------------------------- /src/Report01.Report/StaticResources/SharedResources/BaseThemes/CY24SU10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/StaticResources/SharedResources/BaseThemes/CY24SU10.json -------------------------------------------------------------------------------- /src/Report01.Report/definition.pbir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition.pbir -------------------------------------------------------------------------------- /src/Report01.Report/definition/bookmarks/429f324a76d806abde60.bookmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/bookmarks/429f324a76d806abde60.bookmark.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/bookmarks/b743d6c70b5ea486607b.bookmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/bookmarks/b743d6c70b5ea486607b.bookmark.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/bookmarks/bookmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/bookmarks/bookmarks.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/page.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/19eb7a5feb78ab3943a8/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/19eb7a5feb78ab3943a8/visual.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/46e229f0760010499968/mobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/46e229f0760010499968/mobile.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/46e229f0760010499968/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/46e229f0760010499968/visual.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/5868707ac858bcbe007a/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/5868707ac858bcbe007a/visual.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/611011a7ca2045d99da7/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/611011a7ca2045d99da7/visual.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/74861fcc7ec0c9e97209/mobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/74861fcc7ec0c9e97209/mobile.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/74861fcc7ec0c9e97209/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/74861fcc7ec0c9e97209/visual.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_environment/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_environment/visual.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_lastRefresh/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_lastRefresh/visual.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/mobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/mobile.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/visual.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_title/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_title/visual.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/e74ca53c30d4d6ecd065/mobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/e74ca53c30d4d6ecd065/mobile.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/e74ca53c30d4d6ecd065/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/e74ca53c30d4d6ecd065/visual.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/pages/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/pages/pages.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/report.json -------------------------------------------------------------------------------- /src/Report01.Report/definition/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.Report/definition/version.json -------------------------------------------------------------------------------- /src/Report01.pbip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report01.pbip -------------------------------------------------------------------------------- /src/Report02.Report/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/.platform -------------------------------------------------------------------------------- /src/Report02.Report/StaticResources/RegisteredResources/Company_Green7643675511799916.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/StaticResources/RegisteredResources/Company_Green7643675511799916.json -------------------------------------------------------------------------------- /src/Report02.Report/StaticResources/SharedResources/BaseThemes/CY24SU10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/StaticResources/SharedResources/BaseThemes/CY24SU10.json -------------------------------------------------------------------------------- /src/Report02.Report/definition.pbir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition.pbir -------------------------------------------------------------------------------- /src/Report02.Report/definition/bookmarks/429f324a76d806abde60.bookmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/bookmarks/429f324a76d806abde60.bookmark.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/bookmarks/b743d6c70b5ea486607b.bookmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/bookmarks/b743d6c70b5ea486607b.bookmark.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/bookmarks/bookmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/bookmarks/bookmarks.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/pages/3cf1cedb01b04a3b132e/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/pages/3cf1cedb01b04a3b132e/page.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/5868707ac858bcbe007a/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/5868707ac858bcbe007a/visual.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/653b57e5c9ba254ec575/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/653b57e5c9ba254ec575/visual.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/mobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/mobile.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/visual.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_title/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_title/visual.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/e74ca53c30d4d6ecd065/mobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/e74ca53c30d4d6ecd065/mobile.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/e74ca53c30d4d6ecd065/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/e74ca53c30d4d6ecd065/visual.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/pages/622460703c313d16ed14/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/pages/622460703c313d16ed14/page.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/pages/622460703c313d16ed14/visuals/4cc187dad0a650ac204c/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/pages/622460703c313d16ed14/visuals/4cc187dad0a650ac204c/visual.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/pages/622460703c313d16ed14/visuals/6f4541c00c904bc00a26/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/pages/622460703c313d16ed14/visuals/6f4541c00c904bc00a26/visual.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/pages/622460703c313d16ed14/visuals/885d3292b359c7b2da72/mobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/pages/622460703c313d16ed14/visuals/885d3292b359c7b2da72/mobile.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/pages/622460703c313d16ed14/visuals/885d3292b359c7b2da72/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/pages/622460703c313d16ed14/visuals/885d3292b359c7b2da72/visual.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/pages/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/pages/pages.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/report.json -------------------------------------------------------------------------------- /src/Report02.Report/definition/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.Report/definition/version.json -------------------------------------------------------------------------------- /src/Report02.pbip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report02.pbip -------------------------------------------------------------------------------- /src/Report03.Report/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report03.Report/.platform -------------------------------------------------------------------------------- /src/Report03.Report/StaticResources/RegisteredResources/Company_Blue620697091731989.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report03.Report/StaticResources/RegisteredResources/Company_Blue620697091731989.json -------------------------------------------------------------------------------- /src/Report03.Report/StaticResources/SharedResources/BaseThemes/CY24SU10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report03.Report/StaticResources/SharedResources/BaseThemes/CY24SU10.json -------------------------------------------------------------------------------- /src/Report03.Report/definition.pbir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report03.Report/definition.pbir -------------------------------------------------------------------------------- /src/Report03.Report/definition/bookmarks/429f324a76d806abde60.bookmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report03.Report/definition/bookmarks/429f324a76d806abde60.bookmark.json -------------------------------------------------------------------------------- /src/Report03.Report/definition/bookmarks/b743d6c70b5ea486607b.bookmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report03.Report/definition/bookmarks/b743d6c70b5ea486607b.bookmark.json -------------------------------------------------------------------------------- /src/Report03.Report/definition/bookmarks/bookmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report03.Report/definition/bookmarks/bookmarks.json -------------------------------------------------------------------------------- /src/Report03.Report/definition/pages/3cf1cedb01b04a3b132e/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report03.Report/definition/pages/3cf1cedb01b04a3b132e/page.json -------------------------------------------------------------------------------- /src/Report03.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/22d579fb6e6269edbba7/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report03.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/22d579fb6e6269edbba7/visual.json -------------------------------------------------------------------------------- /src/Report03.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/mobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report03.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/mobile.json -------------------------------------------------------------------------------- /src/Report03.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report03.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/visual.json -------------------------------------------------------------------------------- /src/Report03.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_title/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report03.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_title/visual.json -------------------------------------------------------------------------------- /src/Report03.Report/definition/pages/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report03.Report/definition/pages/pages.json -------------------------------------------------------------------------------- /src/Report03.Report/definition/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report03.Report/definition/report.json -------------------------------------------------------------------------------- /src/Report03.Report/definition/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report03.Report/definition/version.json -------------------------------------------------------------------------------- /src/Report03.pbip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report03.pbip -------------------------------------------------------------------------------- /src/Report04.Report/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/.platform -------------------------------------------------------------------------------- /src/Report04.Report/StaticResources/RegisteredResources/Artboard_10897277198378641.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/StaticResources/RegisteredResources/Artboard_10897277198378641.png -------------------------------------------------------------------------------- /src/Report04.Report/StaticResources/SharedResources/BaseThemes/CY23SU04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/StaticResources/SharedResources/BaseThemes/CY23SU04.json -------------------------------------------------------------------------------- /src/Report04.Report/StaticResources/SharedResources/BuiltInThemes/Bloom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/StaticResources/SharedResources/BuiltInThemes/Bloom.json -------------------------------------------------------------------------------- /src/Report04.Report/definition.pbir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition.pbir -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/3dc12e426243950a56ac/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/3dc12e426243950a56ac/page.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/3dc12e426243950a56ac/visuals/2180995fdcb19474b0c5/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/3dc12e426243950a56ac/visuals/2180995fdcb19474b0c5/visual.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/3dc12e426243950a56ac/visuals/3a699a23215d5d40a4ea/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/3dc12e426243950a56ac/visuals/3a699a23215d5d40a4ea/visual.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/3dc12e426243950a56ac/visuals/3c7227206ccb713739a0/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/3dc12e426243950a56ac/visuals/3c7227206ccb713739a0/visual.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/3dc12e426243950a56ac/visuals/7a82dbc142e1d0094bea/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/3dc12e426243950a56ac/visuals/7a82dbc142e1d0094bea/visual.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/3dc12e426243950a56ac/visuals/9f80f753e7205e03ce4d/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/3dc12e426243950a56ac/visuals/9f80f753e7205e03ce4d/visual.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/3dc12e426243950a56ac/visuals/ccdf64dbc5b1772d7a57/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/3dc12e426243950a56ac/visuals/ccdf64dbc5b1772d7a57/visual.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/3dc12e426243950a56ac/visuals/cd73ee872b38221d15bc/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/3dc12e426243950a56ac/visuals/cd73ee872b38221d15bc/visual.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/3dc12e426243950a56ac/visuals/f62c629060c9242cd37d/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/3dc12e426243950a56ac/visuals/f62c629060c9242cd37d/visual.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/708d7c04691a88810062/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/708d7c04691a88810062/page.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/0bed6a1003555b8abe37/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/0bed6a1003555b8abe37/visual.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/11aed89b23600c74a77c/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/11aed89b23600c74a77c/visual.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/3f680da0ab2060e8e0a6/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/3f680da0ab2060e8e0a6/visual.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/47a996f6d0b080c8c2d2/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/47a996f6d0b080c8c2d2/visual.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/624d1cd33dddc2386da0/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/624d1cd33dddc2386da0/visual.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/93cc8d94716a9ae59ec5/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/93cc8d94716a9ae59ec5/visual.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/bf97e9a16319c1cdb54b/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/bf97e9a16319c1cdb54b/visual.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/c5e61b1a96220d09abcd/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/c5e61b1a96220d09abcd/visual.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/e6c3dea7c9ba660d39c9/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/708d7c04691a88810062/visuals/e6c3dea7c9ba660d39c9/visual.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/pages/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/pages/pages.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/report.json -------------------------------------------------------------------------------- /src/Report04.Report/definition/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.Report/definition/version.json -------------------------------------------------------------------------------- /src/Report04.pbip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report04.pbip -------------------------------------------------------------------------------- /src/Report05.Report/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report05.Report/.platform -------------------------------------------------------------------------------- /src/Report05.Report/StaticResources/RegisteredResources/Company_Blue6995445076846206.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report05.Report/StaticResources/RegisteredResources/Company_Blue6995445076846206.json -------------------------------------------------------------------------------- /src/Report05.Report/StaticResources/SharedResources/BaseThemes/CY24SU10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report05.Report/StaticResources/SharedResources/BaseThemes/CY24SU10.json -------------------------------------------------------------------------------- /src/Report05.Report/definition.pbir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report05.Report/definition.pbir -------------------------------------------------------------------------------- /src/Report05.Report/definition/bookmarks/429f324a76d806abde60.bookmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report05.Report/definition/bookmarks/429f324a76d806abde60.bookmark.json -------------------------------------------------------------------------------- /src/Report05.Report/definition/bookmarks/b743d6c70b5ea486607b.bookmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report05.Report/definition/bookmarks/b743d6c70b5ea486607b.bookmark.json -------------------------------------------------------------------------------- /src/Report05.Report/definition/bookmarks/bookmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report05.Report/definition/bookmarks/bookmarks.json -------------------------------------------------------------------------------- /src/Report05.Report/definition/pages/3cf1cedb01b04a3b132e/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report05.Report/definition/pages/3cf1cedb01b04a3b132e/page.json -------------------------------------------------------------------------------- /src/Report05.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/1a9a5a32f3dd5aa0d1c3/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report05.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/1a9a5a32f3dd5aa0d1c3/visual.json -------------------------------------------------------------------------------- /src/Report05.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/mobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report05.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/mobile.json -------------------------------------------------------------------------------- /src/Report05.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report05.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_logo/visual.json -------------------------------------------------------------------------------- /src/Report05.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_title/visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report05.Report/definition/pages/3cf1cedb01b04a3b132e/visuals/_title/visual.json -------------------------------------------------------------------------------- /src/Report05.Report/definition/pages/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report05.Report/definition/pages/pages.json -------------------------------------------------------------------------------- /src/Report05.Report/definition/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report05.Report/definition/report.json -------------------------------------------------------------------------------- /src/Report05.Report/definition/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report05.Report/definition/version.json -------------------------------------------------------------------------------- /src/Report05.pbip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/Report05.pbip -------------------------------------------------------------------------------- /src/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/deploy.py -------------------------------------------------------------------------------- /src/parameter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuiRomano/pbip-demo/HEAD/src/parameter.yml --------------------------------------------------------------------------------