Copyright ©2009 XBRL International Inc., All Rights Reserved.
Circulation of this Proposed Recommendation is unrestricted. This document is normative. Other documents may supersede this document. Recipients are invited to submit comments to formula-feedback@xbrl.org, and to submit notification of any relevant patent rights of which they are aware and provide supporting documentation.
This specification is an extension to the XBRL Variables Specification [VARIABLES]. It defines syntax for filters that condition upon the features of the period at which or over which facts have been measured.
1 Introduction
1.1 Background
1.2 Relationship to other work
1.3 Language independence
1.4 Terminology
1.5 Document conventions (non-normative)
1.6 Namespaces and namespace prefixes
1.7 XPath usage
2 Syntax
2.1 Period filter
2.2 Period-start filter
2.3 Period-end filter
2.4 Period-instant filter
2.5 Forever filter
2.6 Instant-duration filter
A Normative schema
B References
C Intellectual property status (non-normative)
D Acknowledgements (non-normative)
E Document history (non-normative)
F Errata corrections in this document
1 Namespaces and namespace prefixes
1 Period filters
2 Period-start filters
3 Period-end filters
4 Period-instant filters
5 Instant-duration filters
forever filter
instant-duration filter
period filter
period-end filter
period-instant filter
period-start filter
This specification is an extension to the XBRL Variables Specification [VARIABLES]. It defines syntax for filters that condition upon the features of the period at which or over which facts have been measured.
All of the filters defined in this specification can cover the period aspect.
This specification is a member of a suite of similar specifications that define specific types of criteria that can be used to select facts from XBRL instances. It enhances the fact selection capabilities of the XBRL Variables Specification [VARIABLES].
This specification depends upon the XBRL Specification [XBRL 2.1], and the XBRL Variables Specification [VARIABLES]. In the event of any conflicts between this specification and the specifications upon which it depends, this specification does not prevail.
The official language of XBRL International's own work products is English and the preferred spelling convention is UK English.
This specification is consistent with the definitions of any of the terms defined in specifications that it depends on.
Documentation conventions follow those set out in the XBRL Variables Specification [VARIABLES].
Namespace prefixes [XML NAMES] will be used
for elements and attributes in
the form ns:name
where ns
is the
namespace prefix and name
is the local name.
Throughout this specification, the mappings
from namespace prefixes to actual namespaces is consistent
with
Table
1.
The prefix column in Table 1 is non normative. The namespace URI column is normative.
Prefix | Namespace URI |
---|---|
pf
|
http://xbrl.org/2008/filter/period
|
xbrlpfe
|
http://xbrl.org/2008/filter/period/error
|
eg
|
http://example.com/
|
fn
|
http://www.w3.org/2005/xpath-functions
|
link
|
http://www.xbrl.org/2003/linkbase
|
xbrli
|
http://www.xbrl.org/2003/instance
|
xfi
|
http://www.xbrl.org/2008/function/instance
|
xbrldi
|
http://xbrl.org/2006/xbrldi
|
xbrldt
|
http://xbrl.org/2005/xbrldt
|
xl
|
http://www.xbrl.org/2003/XLink
|
xlink
|
http://www.w3.org/1999/xlink
|
xs
|
http://www.w3.org/2001/XMLSchema
|
xsi
|
http://www.w3.org/2001/XMLSchema-instance
|
gen
|
http://xbrl.org/2008/generic
|
variable
|
http://xbrl.org/2008/variable
|
iso4217
|
http://www.xbrl.org/2003/iso4217
|
This specification only provides a textual declaration of syntax constraints when those constraints are not expressed by the normative schema supplied with this specification.
Explanations of elements and attributes are only supplied when explanations are not already provided in other specifications.
Unless explicitly stated otherwise, a reference to a specific element MUST be read as a reference to that element or to any element in its substitution group.
A period filter is declared by a
<pf:period>
element.
The syntax for the
<pf:period>
element is defined by the normative schema supplied with this specification.
The period filter can be used to match facts based upon a broad range of criteria relating to the period over which or at which they have been measured.
The XPath expression implied by a period filter is:
if (fn:QName("http://www.xbrl.org/2003/instance","tuple") intersect xfi:concept-substitutions(fn:node-name(.)))
then (false())
else (xfi:period(.)[#test])
where #test
is the value of the
@test
attribute on the period filter.
@test attribute value |
Implied constraint |
---|---|
xfi:period-start(.) eq xfi:period-end(xfi:period($eg:other))
|
The fact must have a duration period that starts at the same instant
as the end of the duration period of the fact that the variable eg:other has
evaluated to. |
A period-start filter is declared by a
<pf:periodStart>
element.
The syntax for the
<pf:periodStart>
element is defined by the normative schema supplied with this specification.
The period-start filter can be used to match facts based upon the start of the duration over which they have been measured.
If the period-start filter has a
@time
attribute, then the
XPath expression implied by a period-start filter is:
if (fn:QName("http://www.xbrl.org/2003/instance","tuple") intersect xfi:concept-substitutions(fn:node-name(.)))
then (false())
else
(xfi:period(.)[
if (xfi:is-start-end-period(.))
then (xfi:period-start(.) eq fn:dateTime(#date, #time))
else fn:false()
])
where #date
is the value of the
@date
attribute on the period-start filter and #time
is the value of the
@time
attribute on the period-start filter.
If the period-start filter does not have a
@time
attribute, then the
XPath expression implied by a period-start filter is:
if (fn:QName("http://www.xbrl.org/2003/instance","tuple") intersect xfi:concept-substitutions(fn:node-name(.)))
then (false())
else
(xfi:period(.)[
if (xfi:is-start-end-period(.))
then (xfi:period-start(.) eq fn:dateTime(#date, xs:time('00:00:00')))
else fn:false()
])
where #date
is the value of the
@date
attribute on the period-start filter.
@date attribute value |
@time attribute value |
Implied constraint |
---|---|---|
xs:date('2006-01-01')
|
omitted
|
Facts must be reported with a finite duration that begins at the start of the day on January 1, 2006. See the relevant section of the XBRL Specification for a more detailed explanation. |
xs:date('2007-01-01')
|
xs:time('00:00:00')
|
Facts must be reported with a finite duration that begins at the start of the day on January 1, 2007. |
A period-end filter is declared by a
<pf:periodEnd>
element.
The syntax for the
<pf:periodEnd>
element is defined by the normative schema supplied with this specification.
The period-end filter can be used to match facts based upon the end of the duration over which they have been measured.
If the period-end filter has a
@time
attribute, then the
XPath expression implied by a period-end filter is:
if (fn:QName("http://www.xbrl.org/2003/instance","tuple") intersect xfi:concept-substitutions(fn:node-name(.)))
then (false())
else
(xfi:period(.)[
if (xfi:is-start-end-period(.))
then (xfi:period-end(.) eq fn:dateTime(#date, #time))
else fn:false()
])
where #date
is the value of the
@date
attribute on the period-end filter and #time
is the value of the
@time
attribute on the period-end filter.
If the period-end filter does not have a
@time
attribute, then the
XPath expression implied by a period-end filter is:
if (fn:QName("http://www.xbrl.org/2003/instance","tuple") intersect xfi:concept-substitutions(fn:node-name(.)))
then (false())
else
(xfi:period(.)[
if (xfi:is-start-end-period(.))
then (xfi:period-end(.) eq (fn:dateTime(#date, xs:time('00:00:00'))+ xs:dayTimeDuration('P1D')))
else fn:false()
])
where #date
is the value of the
@date
attribute on the period-end filter.
@date attribute value |
@time attribute value |
Implied constraint |
---|---|---|
xs:date('2006-01-01')
|
omitted
|
Facts must be reported with a finite duration that ends at the end of the day on January 1, 2006. |
xs:date('2007-01-01')
|
xs:date('00:00:00')
|
Facts must be reported with a finite duration that ends at the start of the day on January 1, 2007. |
A period-instant filter is declared by a
<pf:periodInstant>
element.
The syntax for the
<pf:periodInstant>
element is defined by the normative schema supplied with this specification.
The period-instant filter can be used to match facts based upon the instant at which they have been measured.
If the period-instant filter has a
@time
attribute, then the
XPath expression implied by a period-instant filter is:
if (fn:QName("http://www.xbrl.org/2003/instance","tuple") intersect xfi:concept-substitutions(fn:node-name(.)))
then (false())
else
(xfi:period(.)[
if (xfi:is-instant-period(.))
then (xfi:period-instant(.) eq fn:dateTime(#date, #time))
else fn:false()
])
where #date
is the value of the
@date
attribute on the period-instant filter and #time
is the value of the
@time
attribute on the period-instant filter.
If the period-instant filter does not have a
@time
attribute, then the
XPath expression implied by a period-instant filter is:
if (fn:QName("http://www.xbrl.org/2003/instance","tuple") intersect xfi:concept-substitutions(fn:node-name(.)))
then (false())
else
(xfi:period(.)[
if (xfi:is-instant-period(.))
then (xfi:period-instant(.) eq (fn:dateTime(#date, xs:time('00:00:00'))+ xs:dayTimeDuration('P1D')))
else fn:false()
])
where #date
is the value of the
@date
attribute on the period-instant filter.
@date attribute value |
@time attribute value |
Implied constraint |
---|---|---|
xs:date('2006-01-01')
|
omitted
|
Facts must be reported as at the end of January 1, 2006. |
xs:date('2007-01-01')
|
xs:time('00:00:00')
|
Facts must be reported as at the start of January 1, 2007. |
A forever filter is declared by a
<pf:forever>
element.
The syntax for the
<pf:forever>
element is defined by the normative schema supplied with this specification.
The forever filter can be used to match facts that are reported with a forever period.
The XPath expression implied by a forever filter is:
if (fn:QName("http://www.xbrl.org/2003/instance","tuple") intersect xfi:concept-substitutions(fn:node-name(.)))
then (false())
else (xfi:period(.)[xfi:is-forever-period(.)])
A instant-duration filter is declared by an
<pf:instantDuration>
element.
The syntax for the
<pf:instantDuration>
element is defined by the normative schema supplied with this specification.
The instant-duration filter can be used to match facts that are reported as at an instant where that instant matches the start or end of the duration for which another fact has been reported.
If the
@boundary
attribute equals start
then the XPath expression implied by an instant-duration filter is:
if (fn:QName("http://www.xbrl.org/2003/instance","tuple") intersect xfi:concept-substitutions(fn:node-name(.)))
then (false())
else (xfi:period(.)[
if (xfi:is-instant-period(.) and xfi:is-start-end-period(xfi:period($#variable)))
then (xfi:period-instant(.) eq xfi:period-start(xfi:period($#variable)))
else fn:false()
])
where #variable
is the QName contained by the
@variable
attribute on the instant-duration filter.
If the
@boundary
attribute equals end
then the XPath expression implied by an instant-duration filter is:
if (fn:QName("http://www.xbrl.org/2003/instance","tuple") intersect xfi:concept-substitutions(fn:node-name(.)))
then (false())
else (xfi:period(.)[
if (xfi:is-instant-period(.) and xfi:is-start-end-period(xfi:period($#variable)))
then (xfi:period-instant(.) eq xfi:period-end(xfi:period($#variable)))
else fn:false()
])
where #variable
is the QName contained by the
@variable
attribute on the instant-duration filter.
@boundary attribute value |
@variable attribute value |
Implied constraint |
---|---|---|
start
|
eg:variableA
|
Facts must be reported for instants
that are equal to the start of the duration
of the fact that variable eg:variableA
has evaluated to. |
The following is the XML schema provided as part of this specification. This is normative. Non-normative versions (which should be identical to these except for appropriate comments indicating their non-normative status) are also provided as separate files for convenience of users of the specification.
NOTE: (non-normative) Following the schema maintenance policy of XBRL International, it is the intent (but is not guaranteed) that the location of non-normative versions of these schemas on the web will be as follows:
http://www.xbrl.org/2008/
- during the drafting process for
this specification this directory should contain a copy of the
most recent published version of the schema at
http://www.xbrl.org/2008/period-filter.xsd.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to XBRL International or XBRL organizations, except as required to translate it into languages other than English. Members of XBRL International agree to grant certain licenses under the XBRL International Intellectual Property Policy (www.xbrl.org/legal).
This document and the information contained herein is provided on an "AS IS" basis and XBRL INTERNATIONAL DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
The attention of users of this document is directed to the possibility that compliance with or adoption of XBRL International specifications may require use of an invention covered by patent rights. XBRL International shall not be responsible for identifying patents for which a license may be required by any XBRL International specification, or for conducting legal inquiries into the legal validity or scope of those patents that are brought to its attention. XBRL International specifications are prospective and advisory only. Prospective users are responsible for protecting themselves against liability for infringement of patents. XBRL International takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any effort to identify any such rights. Members of XBRL International agree to grant certain licenses under the XBRL International Intellectual Property Policy (www.xbrl.org/legal).
This document could not have been written without the contributions of many people including the participants in the Formula Working Group.
Date | Author | Details |
---|---|---|
18 December 2006 | Geoff Shuetrim |
First internal working draft created, drawing extensively on the previous formula specification drafts. |
25 April 2007 | Geoff Shuetrim |
Changed the target namespace of the normative schema. |
30 April 2007 | Geoff Shuetrim |
Significant redesign of the period filters, broadening the usefulness of the period filter and enhancing the flexibility of the specific period filters. Added a matching period filter that is specifically intended to match one period to another. Added an instant-duration filter specifically designed to simplify the declaration of period relationships between instant and duration concepts. In relation to implicit filtering, added indication that all of the filters defined in this specification cover the period aspect. |
08 May 2007 | Geoff Shuetrim |
Added clarification about the fact aspect covered by the filters defined in this specification. |
29 May 2007 | Geoff Shuetrim |
Changed the target namespace of the normative schema again. Fixed incorrect reference to an instant filter in the description of the period filter. |
11 June 2007 | Geoff Shuetrim |
Fixed the XML Schema to make the time attributes optional, reflecting the wording of the specification. Clarified the example that goes with the instant-duration period filter. |
24 July 2007 | Hugh Wallis |
Edited for public working draft publication. |
06 November 2007 | Geoff Shuetrim |
Converted the specification to XML format. Added in the definitions and the hyperlinks to the relevant sections of the normative schema. Removed the period match filter that will be moved to the match filters specification that will support relative and implicit filtering. Added examples to each of the filters. Modified the design of the instant-duration filter to reduce the need for complex XPath structures in the filter customisation. |
07 November 2007 | Geoff Shuetrim |
Added the forever filter as suggested by Ken Layton. |
26 November 2007 | Jim Richards |
Replaced "an" with "a" in a number of definitions. |
18 December 2007 | Geoff Shuetrim |
Removed comments. |
24 January 2008 | Geoff Shuetrim |
Changed location of hyperlinks to fragments of the the normative schema. |
31 January 2008 | Geoff Shuetrim |
Made the date.time.model have mixed content as suggested by Masatomo Goto
Changed |
01 February 2008 | Geoff Shuetrim |
Fixed up the examples for the period-instant filter as suggested by Masatomo Goto, also including a reference to the relevant section of the XBRL specification for interpreting instants that are reported with date but not time information. |
05 February 2008 | Geoff Shuetrim |
Changed the XPath expressions to test that the period types are right before retrieving period values to ensure that errors are not being thrown by retrieving the wrong kinds of period values from a period when filtering and thus stopping the whole filtering process when the filter is just intended to reject such facts and continue. |
08 February 2008 | Geoff Shuetrim |
Fixed the incorrect name for the
Fixed the duplicate
Changed
Added the missing These mistakes were identified by Masatomo Goto. |
12 February 2008 | Geoff Shuetrim |
Converted remaining general equality tests to value equality tests in the implied XPath expressions. |
14 April 2008 | Geoff Shuetrim |
|
12 August 2008 | Geoff Shuetrim |
Corrected the implied XPath expressions, replacing
|
22 September 2008 | Geoff Shuetrim |
Corrected the examples to reflect the implied XPath expression changes made on 12 August, 2008. The need for this correction was identified by Victor Morilla. |
15 December 2008 | Geoff Shuetrim |
Updated references to the latest errata-corrected version of the XBRL 2.1 specification. |
23 March 2009 | Geoff Shuetrim |
Modified the implied XPath expressions to ensure that they do not cause exceptions to be thrown if the input XBRL instance contains tuples. |
03 May 2009 | Herm Fischer |
Per cgh Chen feedback, added then (false()) clauses to period filters lacking then clauses. |
This appendix contains a list of the errata that have been incorporated into this document. This represents all those errata corrections that have been approved by the XBRL International Formula Working Group up to and including 31 March 2009. Hyperlinks to relevant e-mail threads may only be followed by those who have access to the relevant mailing lists. Access to internal XBRL mailing lists is restricted to members of XBRL International Inc.
No errata have been incorporated into this document.