XBRLTaxonomy
Description
An XBRLTaxonomy object represents the content of an XBRL Taxonomy and the surrounding XML Schema. This is:
- the Namespace, and
- all XBRL concept definitions (items and tuples) , and
- all XBRL role types locally defined, and
- all XBRL arcrole types locally defined, and
- all references to imported XBRLTaxonomies, and
- all references to XBRLLinkbases, and
- all embedded XBRLLinkbases, and
- all other XML Schema related elements like groups, type declarations, global attribute groups, global attribute declarations and element declarations that are not XBRL concepts.
How to create an instance of an XBRLTaxonomy object
There are several ways depending on what the user needs are:
- If the user have just created a new empty DTSContainer object and the purpose is to read the content of an XBRL taxonomy (and the whole referenced DTS) then the simplest way is to use one of the load methods in the DTSContainer object passing the document URI of the XBRL taxonomy. The returned object is an XBRLTaxonomy that can be casted to an XBRLTaxonomy.
- If the user has already loaded a DTS (from another taxonomy file or an XBRL report) and the purpose is to create a new XBRLTaxonomy (in order to create a taxonomy extension) then, the user can use any of the available constructors. The most commonly used constructor is XBRLTaxonomy(com.ihr.xbrl.om.DTSContainer) that accepts the current DTSContainer as a parameter and allows the user to start adding concepts programatically.
Creation of a XBRLTaxonomy object from a local file name: <syntaxhighlight lang="java"> /**
* Sample, a new XBRLTaxonomy document is read form the file received as a parameter * After the instance object is obtained, the user can start working with it */
public class SampleReadTaxonomy {
public static void main(String[] args) throws Exception { DTSContainer dts = DTSContainer.newEmptyContainer(); XBRLTaxonomy taxonomy = (XBRLTaxonomy)dts.load(new File(args[0]).toURI()); // ... rest of the application code goes here }
} </syntaxhighlight>
Creation of a new taxonomy document for a DTS after the DTS has been loaded: <syntaxhighlight lang="java"> /**
* Sample, a new instance document is created after the DTS has been loaded */
public class SampleCreateTaxonomyExtension {
public static void main(String[] args) throws Exception { DTSContainer dts = DTSContainer.newEmptyContainer(); dts.load(new File("sampleTaxonomy.xsd").toURI());
XBRLTaxonomy taxonomy = new XBRLTaxonomy(dts);
// adds taxonomy default minimum information String targetNamespace = "http://www.reportingstandard.com/samples/2009/newTaxonomy"; tx.setURI(new URI("taxonomyExtension.xsd")); tx.setTargetNamespace(targetNamespace); tx.addNamespace("tx", targetNamespace); dts.addDocumentToDTS(tx);
// ... rest of the application code goes here
// Save the Taxonomy extension to disk dts.save(true); }
} </syntaxhighlight>
The Namespace
XBRL Taxonomies are the containers of concept definitions. Concept definitions must be unique worldwide (assets in the US-GAAP and assets in the IFRS). The mechanism provided by the W3C consortium in order to allow easy distinction between concepts defined in different taxonomies is called namespaces.
Each taxonomy is an XML Schema. An XML Schema may define a Namespace. The namespace is a unique name that may be of a form of a URI (Unique Resource Identifier).
For example:
- IFRS 2009 concepts namespace is: http://xbrl.iasb.org/taxonomy/2009-04-01/ifrs
- US-GAAP 2009 concepts namespace is: http://xbrl.us/us-gaap/2009-01-31
Here is the [link for the Namespaces specification] at the W3C consortium.
Read access
The API call [getTargetNamespace()] gives direct access to the taxonomy namespace.
Write access
The API call [setTargetNamespace(String namespace)] sets or changes the taxonomy namespace.
Working with concept definitions
We can classify XBRL Taxonomies in two categories:
- Taxonomies that defines new concepts: They are XBRL Taxonomies that contains new concept definitions. A concept definition is an element in the item or tuple substitution group. Normally, Taxonomies that defines new concepts also include references to the labels and reference linkbases.
- Taxonomies that does not define new concepts: They are XBRL Taxonomies that serves organize the content of the DTS, for example, including a common set of presentation and calculation linkbases together.
Read access
While working with an XBRL Taxonomy, the user may be interested in accessing concepts defined. The XBRLTaxonomy API provides methods for exploring all concept definitions [getConcepts()], [getItems()] and [getTuples()] or access to individual concepts if the concept name is known [getElementDefinitionByName(String name)] or the id [getElementDefinitionById(String id)].
Note: the DTSContainer object contains a method [getConcept(QName qname)] to access to a concept defined in the DTS regardless in which taxonomy the concept is defined. The parameter to that function is the concept QName. Sometimes it is more convenient using that function than having to obtain the XBRLTaxonomy first and ask for the concept later.
Write access
The XBRLTaxonomy API has two methods [addElement(XMLElementDefinition)] and [delElement(XMLElementDefinition)] that allows the user to add or delete concept definitions from an XBRLTaxonomy. The XBRLItem, XBRLTuple and XMLElementDefinition already takes care of calling this methods if the parent argument is properly set. So there should be no need to worry about consistency about what concepts belongs to what taxonomy.
Note: if you change a concept from one taxonomy to another, the concept local name will not be changed, but the concept namespace will no longer be the old namespace.
Working with Role Types
The use of role types in XBRL comes originally from the XLink specification. The idea of the authors of the XLink specification was to allow document authors to put additional information on XLink related elements about the role of the elements (locators, arcs and resources) so the consuming applications can do something with them. In XBRL we did three things:
- we standardize the definition of some role types in the XBRL 2.1 specification
- we allow a standard mechanism in the XBRL 2.1 specification so new role types can be defined in taxonomies
- we provide semantic meaning to the use of role types on different elements like resources and extended links.
In this section about taxonomies we are not going to explore all possibilities about role types, our goal is to let you know that the XBRL API allows you to:
- find role types in the DTS (defined in the XBRL spec or in the loaded taxonomies)
- add new role types to the DTS
- delete existing role types (only if they are not defined in the XBRL spec)
Read access
The method [getRoleTypes()] returns an iterator over all role types XBRLRoleType defined in this taxonomy. The method [getRoleTypeByURI(String URI)] returns a role type XBRLRoleType object if there is a role type defined in this taxonomy for the corresponding URI value.
Note, there is a [getRoleType(String URI)] method in the DTSContainer object that returns a role type XBRLRoleType regardless in which taxonomy the role type is defined or if the role type is a static role type defined in the XBRL 2.1 specification.
Write access
The method [addRoleType(XBRLRoleType newRole)] adds a new role type to the taxonomy. The method [removeRoleType(XBRLRoleType roleType)] removes an existing role from the taxonomy. Both methods are automatically called by the XBRLRoleType class when it is necessary so there should be no need to call this methods manually from XBRL applications.
Working with Arcrole Types
The use of arcrole types in XBRL comes originally from the XLink specification. The idea of the authors of the XLink specification was to allow document authors to put additional information on XLink arcs so the consuming applications can do something with them. In XBRL we did two things:
- we standardize the definition of some arcrole types in the XBRL 2.1 specification
- we allow a standard mechanism in the XBRL 2.1 specification so new arcrole types can be defined in taxonomies
In this section about taxonomies we are not going to explore all possibilities about arcrole types, our goal is to let you know that the XBRL API allows you to:
- find arcrole types in the DTS (defined in the XBRL spec or in the loaded taxonomies)
- add new arcrole types to the DTS
- delete existing arcrole types (only if they are not defined in the XBRL spec)
Read access
The method [getArcroleTypes()] returns an iterator over all arcrole types XBRLArcroleType defined in this taxonomy. The method [getArcroleTypeByURI(String URI)] returns an arcrole type XBRLArcroleType object if there is an arcrole type defined in this taxonomy for the corresponding URI value.
Note, there is a [getArcroleType(String URI)] method in the DTSContainer object that returns an arcrole type XBRLArcroleType regardless in which taxonomy the arcrole type is defined or if the arcrole type is a static arcrole type defined in the XBRL 2.1 specification.
Write access
The method [addArcroleType(XBRLArcroleType newArcrole)] adds a new arcrole type to the taxonomy. The method [removeArcroleType(XBRLArcroleType arcroleType)] removes an existing arcrole from the taxonomy. Both methods are automatically called by the XBRLArcroleType class when it is necessary so there should be no need to call this methods manually from XBRL applications.