function Get-CachePathJiraTeams { <# .SYNOPSIS Get the path for the cached Jira Teams data #> [CmdletBinding()] [OutputType([object[]])] param( ) $cacheFile = Get-CacheFile -Name "JiraTeams.json" return $cacheFile }