Hi there! :)
I have a skill (Spanish) that uses the Amazon.Date slot type and it's been live for months now. The user can request some audio for a week like "tell me [whatever] for this week" (in Spanish > "dime [lo que sea] de esta semana").
I am getting the next request:
"request": { "type": "IntentRequest", "requestId": "amzn1.echo-api.request.a15879d3-6949-434f-944d-cd2c59ce0b6b", "locale": "es-ES", "timestamp": "2021-01-13T07:21:38Z", "intent": { "name": "PlayTheNewsIntent", "confirmationStatus": "NONE", "slots": { "newsDate": { "name": "newsDate", "value": "2021-W2", "confirmationStatus": "NONE", "source": "USER", "slotValue": { "type": "Simple", "value": "2021-W2" } } } } }
I think this is a bug because the value is 2021-W2 instead of 2021-W02 as the ISO defines > https://en.wikipedia.org/wiki/ISO_8601#Week_dates
That behaviour affects to my skill so my audios are named as the expected dates (2021-W01, 2021-W02, and so on).
Could you review this, please? :)
Thanks in advance!