function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
jaw999jaw999 

Embed a Wave dashboard with a simple filter

I feel like this should be easier and I am missing something.
My data set is based on a custom object, links to Opportunity, links to Account.
I have a dashboard I want to embed in Account. Only 1 dataset on this dashboard.
Example from help:

 
{
        "service": {
            "AccountId": ["$Id"],
            "Industry”: ["$Industry"]
        }
    }



My attempt:

 
{
        "Acct_Opp_RSS_RSSA": {
            "CustomObject__c.Opportunity__c.AccountId": ["$Id"]
            
        }
    }


Do I need to address other dimensions if I have no interest in filtering by them?