{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/army-body-fat-calculator/schema.json",
  "title": "Army Body Fat Calculator inputs",
  "description": "Check the current U.S. Army waist-to-height standard and optionally calculate the legacy 2023 one-site body-fat estimate.",
  "type": "object",
  "properties": {
    "standard": {
      "title": "Army standard",
      "type": "string",
      "default": "current2026",
      "enum": [
        "current2026",
        "legacy2023"
      ],
      "x-optionLabels": {
        "current2026": "Current 2026 waist-to-height assessment",
        "legacy2023": "Legacy 2023 one-site body-fat estimate"
      }
    },
    "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"
    },
    "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"
      }
    },
    "waistCm": {
      "title": "Waist at navel",
      "type": "number",
      "default": 90,
      "minimum": 20,
      "maximum": 300,
      "x-step": 0.1,
      "x-suffix": "cm",
      "x-showWhen": {
        "field": "unitSystem",
        "equals": "metric"
      }
    },
    "waistIn": {
      "title": "Waist at navel",
      "type": "number",
      "default": 35.4,
      "minimum": 8,
      "maximum": 120,
      "x-step": 0.1,
      "x-suffix": "in",
      "x-showWhen": {
        "field": "unitSystem",
        "equals": "imperial"
      }
    }
  },
  "required": [
    "standard",
    "unitSystem",
    "sex",
    "age"
  ],
  "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"
        ]
      }
    },
    {
      "if": {
        "properties": {
          "unitSystem": {
            "const": "metric"
          }
        },
        "required": [
          "unitSystem"
        ]
      },
      "then": {
        "required": [
          "waistCm"
        ]
      }
    },
    {
      "if": {
        "properties": {
          "unitSystem": {
            "const": "imperial"
          }
        },
        "required": [
          "unitSystem"
        ]
      },
      "then": {
        "required": [
          "waistIn"
        ]
      }
    }
  ],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "2.0.0",
    "calculatorUrl": "https://askcalculators.com/calculator/army-body-fat-calculator/",
    "queryExample": "https://askcalculators.com/calculator/army-body-fat-calculator/?standard=current2026&unitSystem=metric&sex=male&age=30&weightKg=70&heightCm=175&waistCm=90",
    "migrationStatus": "migrated",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "migratedDate": "2026-08-25",
    "formula": {
      "expression": "Current assessment: WHtR = waist circumference ÷ height, with a ratio below 0.55 meeting the Army screening benchmark; optional legacy estimate uses the 2023 sex-specific one-site equation."
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/army-body-fat-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": {
      "ratio": {
        "title": "Waist-to-height ratio",
        "type": "number",
        "x-format": "number",
        "x-digits": 3,
        "x-primary": true
      },
      "status": {
        "title": "Current standard result",
        "type": "string",
        "x-format": "text"
      },
      "maximumWaist": {
        "title": "Maximum waist at 0.55",
        "type": "string",
        "x-format": "text"
      },
      "legacyBodyFat": {
        "title": "Legacy 2023 body-fat estimate",
        "type": "number",
        "x-format": "percent",
        "x-digits": 1
      },
      "legacyStatus": {
        "title": "Legacy age-band result",
        "type": "string",
        "x-format": "text"
      }
    }
  }
}
