In the workspace, there is a section with the summary holding > debtor domicile, for fixed income funds, like TIP, it shows country and the allocation in percentage. How can I retrieve this data? I couldn't find any data item that links to this specific information:
```python
df = rd.get_data(
universe=['TIP'],
fields=[
# Here must be some data item that retrieves debtor domicile
]
)
display(df)
```