{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/bmr-calculator/schema.json",
  "title": "BMR Calculator inputs",
  "description": "Estimate basal metabolic rate with Mifflin–St Jeor, revised Harris–Benedict, or Katch–McArdle and view activity-adjusted daily energy needs.",
  "type": "object",
  "properties": {
    "unitSystem": {
      "title": "Units",
      "type": "string",
      "default": "metric",
      "enum": [
        "metric",
        "imperial"
      ],
      "x-optionLabels": {
        "metric": "Metric",
        "imperial": "Imperial"
      }
    },
    "sex": {
      "title": "Sex used by equation",
      "type": "string",
      "default": "male",
      "enum": [
        "male",
        "female"
      ],
      "x-optionLabels": {
        "male": "Male",
        "female": "Female"
      }
    },
    "age": {
      "title": "Age",
      "type": "number",
      "default": 30,
      "minimum": 13,
      "maximum": 120,
      "x-step": 1,
      "multipleOf": 1,
      "x-suffix": "years"
    },
    "formula": {
      "title": "BMR equation",
      "type": "string",
      "default": "mifflin",
      "enum": [
        "mifflin",
        "harris",
        "katch"
      ],
      "x-optionLabels": {
        "mifflin": "Mifflin–St Jeor",
        "harris": "Revised Harris–Benedict",
        "katch": "Katch–McArdle (body fat required)"
      }
    },
    "weightKg": {
      "title": "Weight",
      "type": "number",
      "default": 70,
      "minimum": 1,
      "maximum": 500,
      "x-step": 0.1,
      "x-suffix": "kg",
      "x-showWhen": {
        "field": "unitSystem",
        "equals": "metric"
      }
    },
    "heightCm": {
      "title": "Height",
      "type": "number",
      "default": 175,
      "minimum": 50,
      "maximum": 300,
      "x-step": 0.1,
      "x-suffix": "cm",
      "x-showWhen": {
        "field": "unitSystem",
        "equals": "metric"
      }
    },
    "weightLb": {
      "title": "Weight",
      "type": "number",
      "default": 154,
      "minimum": 2,
      "maximum": 1100,
      "x-step": 0.1,
      "x-suffix": "lb",
      "x-showWhen": {
        "field": "unitSystem",
        "equals": "imperial"
      }
    },
    "feet": {
      "title": "Height feet",
      "type": "number",
      "default": 5,
      "minimum": 1,
      "maximum": 9,
      "x-step": 1,
      "multipleOf": 1,
      "x-suffix": "ft",
      "x-showWhen": {
        "field": "unitSystem",
        "equals": "imperial"
      }
    },
    "inches": {
      "title": "Height inches",
      "type": "number",
      "default": 9,
      "minimum": 0,
      "maximum": 11.9,
      "x-step": 0.1,
      "x-suffix": "in",
      "x-showWhen": {
        "field": "unitSystem",
        "equals": "imperial"
      }
    },
    "bodyFatPercent": {
      "title": "Body fat",
      "type": "number",
      "default": 20,
      "minimum": 1,
      "maximum": 79,
      "x-step": 0.1,
      "x-suffix": "%",
      "x-unit": "percent",
      "x-showWhen": {
        "field": "formula",
        "equals": "katch"
      }
    },
    "activity": {
      "title": "Activity level",
      "type": "string",
      "default": "moderate",
      "enum": [
        "sedentary",
        "light",
        "moderate",
        "active",
        "veryActive",
        "extraActive"
      ],
      "x-optionLabels": {
        "sedentary": "Sedentary: little exercise",
        "light": "Light: exercise 1–3 days/week",
        "moderate": "Moderate: exercise 3–5 days/week",
        "active": "Active: hard exercise 6–7 days/week",
        "veryActive": "Very active: hard exercise or physical job",
        "extraActive": "Extra active: very hard training and physical job"
      }
    },
    "energyUnit": {
      "title": "Energy display",
      "type": "string",
      "default": "kcal",
      "enum": [
        "kcal",
        "kj"
      ],
      "x-optionLabels": {
        "kcal": "Calories (kcal)",
        "kj": "Kilojoules (kJ)"
      }
    }
  },
  "required": [
    "unitSystem",
    "sex",
    "age",
    "formula",
    "activity",
    "energyUnit"
  ],
  "allOf": [
    {
      "if": {
        "properties": {
          "unitSystem": {
            "const": "metric"
          }
        },
        "required": [
          "unitSystem"
        ]
      },
      "then": {
        "required": [
          "weightKg"
        ]
      }
    },
    {
      "if": {
        "properties": {
          "unitSystem": {
            "const": "metric"
          }
        },
        "required": [
          "unitSystem"
        ]
      },
      "then": {
        "required": [
          "heightCm"
        ]
      }
    },
    {
      "if": {
        "properties": {
          "unitSystem": {
            "const": "imperial"
          }
        },
        "required": [
          "unitSystem"
        ]
      },
      "then": {
        "required": [
          "weightLb"
        ]
      }
    },
    {
      "if": {
        "properties": {
          "unitSystem": {
            "const": "imperial"
          }
        },
        "required": [
          "unitSystem"
        ]
      },
      "then": {
        "required": [
          "feet"
        ]
      }
    },
    {
      "if": {
        "properties": {
          "unitSystem": {
            "const": "imperial"
          }
        },
        "required": [
          "unitSystem"
        ]
      },
      "then": {
        "required": [
          "inches"
        ]
      }
    }
  ],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "2.0.0",
    "calculatorUrl": "https://askcalculators.com/calculator/bmr-calculator/",
    "queryExample": "https://askcalculators.com/calculator/bmr-calculator/?unitSystem=metric&sex=male&age=30&formula=mifflin&weightKg=70&heightCm=175&activity=moderate&energyUnit=kcal",
    "migrationStatus": "new",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "formula": {
      "expression": "Mifflin: 10W + 6.25H − 5A + s; revised Harris–Benedict uses sex-specific coefficients; Katch–McArdle: 370 + 21.6 × lean mass (kg)."
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/bmr-calculator.json",
      "qualifiedReview": "pending",
      "qualifiedReviewer": null,
      "qualifiedReviewDate": null,
      "formulaVersion": "2.0.0",
      "referenceCoverage": "references-listed",
      "releaseTestScope": "Catalog and regression checks are not a professional formula audit; consult release evidence.",
      "historicalMetadataDate": "2026-08-25",
      "historicalMetadataNotice": "The imported date is not evidence of a completed human review."
    },
    "outputs": {
      "bmr": {
        "title": "Basal metabolic rate",
        "type": "number",
        "x-format": "number",
        "x-digits": 0,
        "x-primary": true
      },
      "sedentary": {
        "title": "Sedentary daily need",
        "type": "number",
        "x-format": "number",
        "x-digits": 0
      },
      "moderate": {
        "title": "Moderate-activity daily need",
        "type": "number",
        "x-format": "number",
        "x-digits": 0
      },
      "veryActive": {
        "title": "Very-active daily need",
        "type": "number",
        "x-format": "number",
        "x-digits": 0
      },
      "equation": {
        "title": "Equation used",
        "type": "string",
        "x-format": "text"
      }
    }
  }
}
