Hi, I have a quick question. The following is copied from the API code example:
import lseg.data as ld
from lseg.data.content.ipa.financial_contracts import cds
response = cds.Definition(
instrument_tag="Cds1_InstrumentCode",
instrument_code="BNPP5YEUAM=R",
pricing_parameters=cds.PricingParameters(market_data_date="2020-01-01"),
fields=[
"InstrumentTag",
"ValuationDate",
"InstrumentDescription",
"StartDate",
"EndDate",
"SettlementDate",
"UpfrontAmountInDealCcy",
"CashAmountInDealCcy",
"AccruedAmountInDealCcy",
"AccruedBeginDate",
"NextCouponDate",
"UpfrontPercent",
"ConventionalSpreadBp",
"ParSpreadBp",
"AccruedDays",
"ErrorCode",
"ErrorMessage",
],
).get_data()
response.data.df
The fields used here are different from those that can be found via "DIB" on the workspace. Where can we find available fields for this setup?