How to exclude tabs and files
This page explains how you can customize the appearance of the content tabs in the Validate UI.
Overview
- The
General Workspacehas the following tabs displayed by default:Metadata,MediaandMarkers - The
Audio Workspacehas the following tabs displayed by default:AudioandPhase+ the General Workspace tabs - The
Ad Break Workspacehas the following tabs displayed by default:Program,Media, andMarkers
To customize which tabs are displayed, use the following settings:
excludeTabs- Control which tabs are hidden in the UIfilesTabAllowedFileTypes- Decide which file types are displayed in theFilestab
Using excludeTabs
- Allows you to hide specific tabs from the UI
- The default value is
["files"], which means that theFilestab in the General Workspace is initially hidden - To show all tabs you can use an empty array:
[]
Example: Show all tabs
Using an empty array will show all tabs in all workspaces, including the files tab:
{
"excludeTabs": []
}

Example: Hide specific tabs
This configuration hides the Markers tab from all workspaces, while showing the Metadata, Media, and Files tabs in the
workspaces that support them:
{
"excludeTabs": ["markers"]
}
Using filesTabAllowedFileTypes
- It allows you to filter out specific file types from the
Filestab in the General Workspace - The default value is
["VIDEO", "AUDIO"], which means that video and audio files are displayed by default
This setting only works when the files tab is visible (i.e., when excludeTabs is used and doesn't explicitly
filter out ["files"]).
Example: Show only video files
This example shows what the General Workspace looks like with only video files displayed in the Files tab.
{
"excludeTabs": [],
"filesTabAllowedFileTypes": ["VIDEO"]
}

Combined example
In this example all tabs except the Files tab are hidden, and only video and subtitle files are displayed in the tab:
{
"excludeTabs": ["metadata", "audio","media", "markers", "program", "phase"],
"filesTabAllowedFileTypes": ["VIDEO", "SUBTITLE"]
}

Reference
See reference for more technical details: Launch template settings › Files and Tabs.