You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for example in the following instance file: https://www.sec.gov/Archives/edgar/data/101199/000010119921000053/ufcs-20210331_htm.xml
the element:
<ufcs:AccruedExpensesAndOtherLiabilities contextRef="i078c96718789432b87b0dd0047972763_I20210331" decimals="-3" id="id3VybDovL2RvY3MudjEvZG9jOjRkYjFiMDhlMDY0MjQ4ZWFhMjg2YmExNGNjNmNlNDIyL3NlYzo0ZGIxYjA4ZTA2NDI0OGVhYTI4NmJhMTRjYzZjZTQyMl8xOS9mcmFnOjcxMmIyMDRhNDNjNzRhOGVhMjFkYmI4ZGRhOTgwYzFmL3RhYmxlOmNiNGMyODA5YTU3YjQ5YzRhODNiMzkyYWU2MTZiMjU0L3RhYmxlcmFuZ2U6Y2I0YzI4MDlhNTdiNDljNGE4M2IzOTJhZTYxNmIyNTRfMzEtMS0xLTEtMA_ff86ac9b-8da8-4873-b7eb-5f603fa37a3c" unitRef="usd">92401000</ufcs:AccruedExpensesAndOtherLiabilities>
is missing after parsing
this is the index page for reference: https://www.sec.gov/Archives/edgar/data/101199/000010119921000053/0000101199-21-000053-index.htm
is not clear to me why the namespace ufcs is not being picked up.
any idea why this could be?
The text was updated successfully, but these errors were encountered:
This is a funny one! Thanks for posting! I really wonder why this has not been discovered before 😄
Background: When parsing facts in XBRL I loop over all XML elements. In order to exclude XBRL contexts, units and schema references I have the following if condition there:
Since the company filing the document is called "unitedfiregroup" it has the phrase "unit" in the full XML tag and thus py-xbrl skips all facts filed by this company because it thinks that these facts are units and not facts.
for example in the following instance file:
https://www.sec.gov/Archives/edgar/data/101199/000010119921000053/ufcs-20210331_htm.xml
the element:
<ufcs:AccruedExpensesAndOtherLiabilities contextRef="i078c96718789432b87b0dd0047972763_I20210331" decimals="-3" id="id3VybDovL2RvY3MudjEvZG9jOjRkYjFiMDhlMDY0MjQ4ZWFhMjg2YmExNGNjNmNlNDIyL3NlYzo0ZGIxYjA4ZTA2NDI0OGVhYTI4NmJhMTRjYzZjZTQyMl8xOS9mcmFnOjcxMmIyMDRhNDNjNzRhOGVhMjFkYmI4ZGRhOTgwYzFmL3RhYmxlOmNiNGMyODA5YTU3YjQ5YzRhODNiMzkyYWU2MTZiMjU0L3RhYmxlcmFuZ2U6Y2I0YzI4MDlhNTdiNDljNGE4M2IzOTJhZTYxNmIyNTRfMzEtMS0xLTEtMA_ff86ac9b-8da8-4873-b7eb-5f603fa37a3c" unitRef="usd">92401000</ufcs:AccruedExpensesAndOtherLiabilities>
is missing after parsing
this is the index page for reference:
https://www.sec.gov/Archives/edgar/data/101199/000010119921000053/0000101199-21-000053-index.htm
is not clear to me why the namespace ufcs is not being picked up.
any idea why this could be?
The text was updated successfully, but these errors were encountered: