{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/weighted-grade-calculator/schema.json",
  "title": "Weighted Grade Calculator inputs",
  "description": "Calculate a course grade from matching lists of assessment scores and weights.",
  "type": "object",
  "properties": {
    "scores": {
      "title": "Scores (%)",
      "type": "string",
      "default": "85, 90, 78, 92"
    },
    "weights": {
      "title": "Weights (%)",
      "type": "string",
      "default": "20, 10, 30, 40"
    }
  },
  "required": [
    "scores",
    "weights"
  ],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "1.0.0",
    "calculatorUrl": "https://askcalculators.com/calculator/weighted-grade-calculator/",
    "queryExample": "https://askcalculators.com/calculator/weighted-grade-calculator/?scores=85%2C+90%2C+78%2C+92&weights=20%2C+10%2C+30%2C+40",
    "migrationStatus": "new",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "formula": {
      "expression": "weighted grade = Σ(score × weight) ÷ Σ(weight)"
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/weighted-grade-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-09-01",
      "historicalMetadataNotice": "The imported date is not evidence of a completed human review."
    },
    "outputs": {
      "weightedGrade": {
        "title": "Weighted grade",
        "type": "number",
        "x-format": "percent",
        "x-digits": 2,
        "x-primary": true
      },
      "letterGrade": {
        "title": "Letter grade",
        "type": "string",
        "x-format": "text"
      },
      "totalWeight": {
        "title": "Total weight entered",
        "type": "number",
        "x-format": "percent",
        "x-digits": 2
      },
      "weightedPoints": {
        "title": "Weighted points",
        "type": "number",
        "x-format": "number",
        "x-digits": 4
      }
    }
  }
}
