{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/budget-calculator/schema.json",
  "title": "Budget Calculator inputs",
  "description": "Plan your monthly budget by categorizing income and expenses.",
  "type": "object",
  "properties": {
    "income": {
      "title": "Total Net Income",
      "type": "number",
      "default": 5000
    },
    "housing": {
      "title": "Housing",
      "type": "number",
      "default": 1500
    },
    "food": {
      "title": "Food & Dining",
      "type": "number",
      "default": 600
    },
    "transport": {
      "title": "Transportation",
      "type": "number",
      "default": 400
    },
    "utilities": {
      "title": "Utilities",
      "type": "number",
      "default": 300
    },
    "insurance": {
      "title": "Insurance",
      "type": "number",
      "default": 200
    },
    "debt": {
      "title": "Debt Payments",
      "type": "number",
      "default": 500
    },
    "savings": {
      "title": "Savings/Invest",
      "type": "number",
      "default": 500
    },
    "entertainment": {
      "title": "Entertainment",
      "type": "number",
      "default": 200
    },
    "other": {
      "title": "Other",
      "type": "number",
      "default": 300
    }
  },
  "required": [],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "7.0.0",
    "calculatorUrl": "https://askcalculators.com/calculator/budget-calculator/",
    "queryExample": "https://askcalculators.com/calculator/budget-calculator/?income=5000&housing=1500&food=600&transport=400&utilities=300&insurance=200&debt=500&savings=500&entertainment=200&other=300",
    "migrationStatus": "migrated",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "migratedDate": "2026-08-18",
    "formula": {
      "expression": "Total expenses = sum of entered spending; remaining cash = income − expenses; each category share = category amount ÷ income × 100."
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/budget-calculator.json",
      "qualifiedReview": "pending",
      "qualifiedReviewer": null,
      "qualifiedReviewDate": null,
      "formulaVersion": "7.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": {
      "result": {
        "title": "Result",
        "type": "string",
        "x-format": "text",
        "x-primary": true
      }
    }
  }
}
