How should a duration of 500 milliseconds be expressed using ISO 8601? To me, the documentation is not 100% clear. Is it just "PT0.5S" ?
ISO 8601 Duration with milliseconds?
17.1k Views Asked by Werner AtThere are 4 best solutions below

Is it just "PT0.5S" ?
Yes, it is a correct representation.
Test using Java-8 standard library
java.time.Duration
is modelled on ISO-8601 standards and was introduced as part of JSR-310 implementation.
Demo:
import java.time.Duration;
public class Main {
public static void main(String[] args) {
System.out.println(Duration.ofMillis(500));
}
}
Output:
PT0.5S
Learn about the modern date-time API from Trail: Date Time.

As of today, as an unofficial response quoting unofficial source, one may visit timestamp-converter.com to find out the following example (loaded at page creation I guess)
...
ISO 8601
2023-08-25T08:35:16.792Z
supporting format: 1970-01-01T00:00:00.000Z or 1970-01-01T00:00:00.000+00:00
...

PT0.5S
is correct provided the ISO 8601 Duration format is
P(n)Y(n)M(n)DT(n)H(n)M(n)S
there is no place for milliseconds.
So for 10 milliseconds
it will be PT0.01S
and 1 millisecond can be denoted as PT0.001S
ISO 8601
Durations are expressed using the following format, where (n)
is replaced by the value for each of the date and time elements that follow the (n):
P(n)
Y(n)
M(n)
DT(n)
H(n)
M(n)
S
Here
P is the duration designator (referred to as "period"), and is always placed at the beginning of the duration.
Y is the year designator that follows the value for the number of years.
M is the month designator that follows the value for the number of months.
W is the week designator that follows the value for the number of weeks.
D is the day designator that follows the value for the number of days.
T is the time designator that precedes the time components.
H is the hour designator that follows the value for the number of hours.
M is the minute designator that follows the value for the number of minutes.
S is the second designator that follows the value for the number of seconds.
Example
To represent 9 years 8 month 7 days 6 hours 5 min & 4 second
will be written as
P9Y8M7DT6H5M4S
It can also be written individually as the 0 is omitted:
P9Y
= 9 years
P8M
= 8 months
P7D
= 7 days
PT6H
= 6 hour
PT5M
= 5 minutes
PT4S
= 4 second
See the use of T
between P8M
& PT5M
to represent Month or Minute.
To represent 0(Zero) second you can use PT0S
but to represent value in between like millisecond you have to use PT0.5S
which is half second or 500 millisecond. The same will be true to P0.5Y
to represent half year or P6M
Yes.
I could only find an old draft for 8601 but it is explicit on the fractional representation:
and later
All this is coherent with the wikipedia article, so the ISO-8601 of a duration of 500 ms should be
PT0,5S
orPT0.5S