This folder contains the authoritative JSON schema files for validating report themes in Power BI Desktop. These schemas conform to the Draft 7 specification of the JSON schema spec.
Each file is tagged with the monthly release version of Desktop. Inside the file, the description
field describes the "exploration version" that the schema is valid for; this is generally matched with the release version of Power BI Desktop.
As part of our on-going effort to provide complete specification of our file format, subsequent versions of this schema will feature mostly additive changes as new formatting settings are added.
Power BI Desktop version | Date | Exploration version | Schema name |
---|---|---|---|
2.127.x.x | Mar 2024 | 5.52 | reportThemeSchema-2.127.json |
2.126.x.x | Feb 2024 | 5.51 | reportThemeSchema-2.126.json |
2.124.x.x | Dec 2023 | 5.50 | reportThemeSchema-2.124.json |
2.123.x.x | Nov 2023 | 5.49 | reportThemeSchema-2.123.json |
2.122.x.x | Oct 2023 | 5.48 | reportThemeSchema-2.122.json |
2.121.x.x | Sep 2023 | 5.48 | reportThemeSchema-2.121.json |
2.120.x.x | Aug 2023 | 5.47 | reportThemeSchema-2.120.json |
2.119.x.x | Jul 2023 | 5.46 | reportThemeSchema-2.119.json |
2.118.x.x | Jun 2023 | 5.45 | reportThemeSchema-2.118.json |
2.117.x.x | May 2023 | 5.44 | reportThemeSchema-2.117.json |
2.116.x.x | Apr 2023 | 5.43 | reportThemeSchema-2.116.json |
2.115.x.x | Mar 2023 | 5.42 | reportThemeSchema-2.115.json |
2.114.x.x | Feb 2023 | 5.41 | reportThemeSchema-2.114.json |
We anticipate two primary use cases for this schema. One is for report theme authors, and the other is for report theme ISVs. As always, you can find the general documentation for report themes on the Microsoft docs site.
Each formatting option under the visualStyles
top-level property is tagged with the title
and description
that generally matches the English (en-US) translation text of the formatting property as it shows in the Formatting pane within Power BI Desktop.
If you are building custom report themes, you can use this schema to identify what formatting property defaults can be specified within your custom theme.
While the Microsoft docs site contains information about semantic colors, icons, and text styles, it does not specify all per-visual formatting settings. As a general rule, all formatting that is controlled within the format pane within Power BI Desktop can also be specified with a different default by a custom theme. The JSON schema helps to identify what these properties are called, their valid values, and how they should be specified.
Various IDEs can support in-line validation of JSON file authoring. Here, we'll use the example of Visual Studio Code's support for JSON schemas.
Download the appropriate schema file to your workstation, then create a blank JSON file alongside the downloaded file. You can reference the schema from within your custom theme using the "$schema"
property, like so:
You can also directly reference the "raw" HTML link of the schema in the repository, though note that you need an active internet connection and allow Visual Studio Code access to the remote resource.
Once you link up the schema, you can use autocomplete to understand the structure and available formatting options available. Trigger autocomplete explicitly by using the key combination Ctrl + Space. The description pop-up will show the formatting item's display name and description as they show in the Formatting pane, if available:
Validation errors will show as yellow error lines (much like bad grammar identified in Microsoft Word) that are required to be fixed to be valid report themes.
Our schemas conform to the draft-7 JSON schema spec. You may use this schema to help identify and document all available formatting to your clients, or use this schema in applications to programmatically generate custom theme JSON files.
These schemas are used verbatim inside of Power BI Desktop to validate custom JSON theme when they are first imported to a report. If the validation fails, Power BI Desktop will reject the custom theme.
The error messges that we generate in Power BI Desktop are based on the Ajv library; you may get different error messages if you use a different JSON schema validator.
We currently do not support the following items in the custom report theme JSON, though we may add support given feedback:
- References to dynamic content that reports support (other than
ThemeDataColor
expressions), e.g.expr: { SparklineData: { ... } }
- References from formatting colors to semantic colors, e.g.
"foreground"
for aFill
type. - References to model-specific items, such as conditional formatting that depends on fields or data values
The following describes known issues in previously-released reportThemeSchema JSON files. "Open issues" are not prioritized for quick fixing and will be priotized as time allows.
- Defining a default "canvas size" doesn't work; see Issue #51.
- Default "group" visualType styling is exported into the schema (visual container groups)
- Export well-known
$id
repetition like "Active" and "Available" slicer pane cards, "default/hover/active/disabled" actionButton states, "default" for cardVisual/advancedSlicerVisual; see Issue #59.
Issues fixed in the May 2023 release (2.117) of Power BI Desktop:
- Enumeration values are not clearly defined such as "labelOrientation"; took the fix of using enum descriptors with
const
- Schema for "image" visualType is now exported + supported
Issues in the February 2023 release (2.114) and fixed in the March 2023 release (2.115) of Power BI Desktop:
- The top-level
icons
schema only supports icons defined in a list, not as a named object list. - Certain "verticalAlignment" formatting options may only accept horizontal alignment options such as "left", "center", and "right" instead of "top", "middle", and "bottom".
- Eight-digit hex colors were not allowed for
Fill
definitions, where the last octet describes alpha transparency, e.g.:#0000ff7f
->rgba(0, 0, 255, 0.5)
Please leave suggestions and tag @yelper in your issue that you open on this repository.