{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/day-of-week-calculator/schema.json",
  "title": "Day of Week Calculator inputs",
  "description": "Find the weekday, day of year, ISO week number, and leap-year status.",
  "type": "object",
  "properties": {
    "date": {
      "title": "Date",
      "type": "string",
      "default": "2026-08-18",
      "format": "date"
    }
  },
  "required": [
    "date"
  ],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "1.0.0",
    "calculatorUrl": "https://askcalculators.com/calculator/day-of-week-calculator/",
    "queryExample": "https://askcalculators.com/calculator/day-of-week-calculator/?date=2026-08-18",
    "migrationStatus": "new",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "formula": {
      "expression": "Weekday and ISO week are derived from the Gregorian calendar date"
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/day-of-week-calculator.json",
      "qualifiedReview": "pending",
      "qualifiedReviewer": null,
      "qualifiedReviewDate": null,
      "formulaVersion": "1.0.0",
      "referenceCoverage": "references-pending",
      "releaseTestScope": "Catalog and regression checks are not a professional formula audit; consult release evidence.",
      "historicalMetadataDate": "2026-08-18",
      "historicalMetadataNotice": "The imported date is not evidence of a completed human review."
    },
    "outputs": {
      "weekday": {
        "title": "Weekday",
        "type": "string",
        "x-format": "text",
        "x-primary": true
      },
      "dayOfYear": {
        "title": "Day of year",
        "type": "number",
        "x-format": "integer"
      },
      "isoWeek": {
        "title": "ISO week",
        "type": "number",
        "x-format": "integer"
      },
      "leapYear": {
        "title": "Leap year",
        "type": "string",
        "x-format": "text"
      }
    }
  }
}
