I am implementing a client credentials grant in ADFS3.0. This works based on the scenarios and developer examples.
I want to add an issuance transform rule that uses the client_id to lookup extra claims in a custom sql attribute store.
c:[Type == "???"]
=> issue(store = "Custom Attribute Store", types = ("XYZ"), query = "SELECT claimValue from dbo.ClientClaims WHERE clientId= {0}", param = c.Value);
What is the correct value for Type to find the client_id?