-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] how to add an explicit member with namespace specified #70
Comments
Hi, |
I'm just back from vacation and my brain isn't yet in full XBRL mode so this might take some time :( |
@dgm9704 resolved. thanks var entity = new Entity("http://www.ato.gov.au/abn", "18641935846");
instance.SetDimensionNamespace("h04", "http://sbr.gov.au/dims/RprtPyType.02.00.dims");
var segment = new Segment(instance);
segment.AddExplicitMember("ReportPartyTypeDimension", "h04:ReportingParty");
entity.Segment = segment; |
Yes, I think the problem is that because my code is a bit stupid, |
thank you for making this repo public. |
My Code:
Actual Result:
<xbrldi:explicitMember dimension=":ReportPartyTypeDimension">ReportingParty</xbrldi:explicitMember>
Expected Result:
<xbrldi:explicitMember dimension="h04:ReportPartyTypeDimension">h04:ReportingParty</xbrldi:explicitMember>
The text was updated successfully, but these errors were encountered: