कैलेंडर की पूरी तारीख दिखाता है. उदाहरण के लिए, जन्म की तारीख. दिन का समय और टाइमज़ोन, किसी दूसरी जगह पर बताया गया है या ज़रूरी नहीं है. यह तारीख, प्रोलिप्टिक ग्रेगोरियन कैलेंडर के हिसाब से होती है. तारीख, कैलेंडर की मान्य तारीख होनी चाहिए. यह तारीख 1 से 9999 के बीच की होनी चाहिए.
JSON के काेड में दिखाना
{"year": integer,"month": integer,"day": integer}
फ़ील्ड
year
integer
तारीख का साल. यह वैल्यू 1 से 9999 के बीच होनी चाहिए.
month
integer
तारीख का महीना. यह वैल्यू 1 से 12 के बीच होनी चाहिए.
day
integer
महीने का दिन. यह दिन 1 से 31 के बीच का होना चाहिए. साथ ही, यह साल और महीने के लिए मान्य होना चाहिए.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-07-25 (UTC) को अपडेट किया गया."],[],[],null,["# Date\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n\nRepresents a whole calendar date, for example a date of birth. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the [Proleptic Gregorian Calendar](https://en.wikipedia.org/wiki/Proleptic_Gregorian_calendar). The date must be a valid calendar date between the year 1 and 9999.\n\n| JSON representation |\n|---------------------------------------------------------------|\n| ``` { \"year\": integer, \"month\": integer, \"day\": integer } ``` |\n\n| Fields ||\n|---------|--------------------------------------------------------------------------------|\n| `year` | `integer` Year of date. Must be from 1 to 9999. |\n| `month` | `integer` Month of date. Must be from 1 to 12. |\n| `day` | `integer` Day of month. Must be from 1 to 31 and valid for the year and month. |"]]