Date
Rappresenta un'intera data di calendario, ad esempio una data di nascita. L'ora del giorno e il fuso orario sono specificati altrove o non sono significativi. La data è relativa al calendario gregoriano prolettico. La data deve essere una data di calendario valida compresa tra l'anno 1 e il 9999.
Rappresentazione JSON |
{
"year": integer,
"month": integer,
"day": integer
} |
Campi |
year |
integer
Anno della data. Il valore deve essere compreso tra 1 e 9999.
|
month |
integer
Mese del giorno. Il valore deve essere compreso tra 1 e 12.
|
day |
integer
Giorno del mese. Il valore deve essere compreso tra 1 e 31 ed essere valido per l'anno e il mese.
|
Salvo quando diversamente specificato, i contenuti di questa pagina sono concessi in base alla licenza Creative Commons Attribution 4.0, mentre gli esempi di codice sono concessi in base alla licenza Apache 2.0. Per ulteriori dettagli, consulta le norme del sito di Google Developers. Java è un marchio registrato di Oracle e/o delle sue consociate.
Ultimo aggiornamento 2024-09-03 UTC.
[null,null,["Ultimo aggiornamento 2024-09-03 UTC."],[[["The JSON object represents a full calendar date, like a birth date, using the Proleptic Gregorian Calendar."],["The date must be a valid calendar date with a year between 1 and 9999, inclusive."],["The JSON object includes three fields: `year`, `month`, and `day`, representing the integer values for the year, month, and day of the date."],["`year` must be between 1 and 9999, `month` between 1 and 12, and `day` must be valid for the specified year and month, ranging from 1 to 31."]]],[]]