Skip to content
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

Time zone allowed #101

Merged
merged 1 commit into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion guides/release-notes/v3.0.13.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Release date:: May 2024

* Catalogue transaction (T19)
** Added possibility (by use of a code) to indicate if an item is non-returnable after purchase. The element cac:TransactionConditions/cbc:ActionCode on item-level is used and the code is added to the codelist "Transaction condition code (OpenPeppol)", together with the previous code to indicate if an item is contracted (CT). The element cbc:ActionCode was previously fixed to the value 'CT' since it was the only allowed code, but with this change, it can be used for both purposes.

** Time may be given with time zone information.

== Changes to code lists and validation artefacts

Expand Down
9 changes: 6 additions & 3 deletions guides/shared/datatypes/time.adoc
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@

= Time

Time shall be in accordance to the “Extended time format” as specified by {ISO8601}, format [hh]:[mm]:[ss].

Time shall be in accordance to the “Extended time format” as specified by {ISO8601}, +
- format without time zone [hh]:[mm]:[ss] +
- format with UTC timezone [hh]:[mm]:[ss]Z +
- format for other zones [hh]:[mm]:[ss]±[hh:mm] with zone is given as difference from UTC.

====
IMPORTANT: Time shall *not* include timezone information. Decimal fraction on seconds SHALL not be used.
IMPORTANT: Time may include timezone information. +
Decimal fraction on seconds SHALL not be used.
====


Expand Down
Loading