একটি সম্পূর্ণ ক্যালেন্ডার তারিখ প্রতিনিধিত্ব করে, উদাহরণস্বরূপ একটি জন্ম তারিখ। দিনের সময় এবং সময় অঞ্চল হয় অন্য কোথাও নির্দিষ্ট করা হয়েছে বা উল্লেখযোগ্য নয়৷ তারিখটি প্রোলেপটিক গ্রেগরিয়ান ক্যালেন্ডারের সাথে সম্পর্কিত। তারিখটি 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"]],["2024-11-10 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."]]],[]]