Retrieve type of Creditor information from fact #98
Unanswered
ahoward-ch
asked this question in
Q&A
Replies: 1 comment
-
From your description, the problem is unfortunately not exactly clear to me. When a concept is defined in the taxonomy, you can specify whether it has a credit or debit character. Temporal information is normally added via the context. Could you maybe share some of the xml code (the facts and corresponding contexts)? Maybe I can help you then. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have an XBRL file with 2 types of creditors:
Creditors: amounts falling due within one year
andCreditors: amounts falling due after more than one year
. But thefact
for each only containsCreditors
in the name and I cant see any other attributes present which hold the information.If I convert the instance to JSON, then the dictionary for that fact does contain the key/value pair of
'MaturitiesOrExpirationPeriodsDimension': 'WithinOneYear'
for the first, and'MaturitiesOrExpirationPeriodsDimension': 'AfterOneYear'
for the second. I really need to access that value when scanning through the instance fact by fact, so I can append the'WithinOneYear'
/'AfterOneYear'
to the concept name.Any ideas how?
Beta Was this translation helpful? Give feedback.
All reactions