Вам необходимо определить policyName
как ClaimType
в ClaimsSchema
, чтобы на него можно было ссылаться, используя ClaimTypeReferenceId
в InputClaim
в TechnicalProfile
.
<ClaimType Id="policyId">
<DisplayName>PolicyId</DisplayName>
<DataType>string</DataType>
<UserHelpText>PolicyId.</UserHelpText>
</ClaimType>
Затем, этобудет работать:
<InputClaim ClaimTypeReferenceId="policyId" DefaultValue="{Policy:PolicyId}" />