{
  "id": "operations-ratios-calculator",
  "version": "1.0.0",
  "name": "Operations Ratios Calculator",
  "shortName": "Operations Ratios",
  "description": "Calculate operating-efficiency ratios for assets, inventory, receivables, payables, and working capital.",
  "category": "Finance",
  "categorySlug": "finance",
  "keywords": [
    "operations",
    "ratios",
    "calculator",
    "operations ratios calculator"
  ],
  "status": "live",
  "workStatus": "pending",
  "reviewStatus": "pending",
  "migrationStatus": "new",
  "engine": "native",
  "creator": null,
  "reviewer": null,
  "quality": {
    "availability": "live",
    "technicalReviewRecord": "/reviews/operations-ratios-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."
  },
  "notice": "Ratio definitions and useful benchmarks vary by industry and accounting policy.",
  "urls": {
    "page": "/calculator/operations-ratios-calculator/",
    "definition": "/calculator/operations-ratios-calculator/definition.json",
    "schema": "/calculator/operations-ratios-calculator/schema.json",
    "llms": "/calculator/operations-ratios-calculator/llms.txt",
    "legacyDefinition": "/calculator/operations-ratios-calculator.json"
  },
  "queryExample": "https://askcalculators.com/calculator/operations-ratios-calculator/?netSales=1000000&costOfGoodsSold=600000&averageTotalAssets=500000&averageInventory=100000&averageAccountsReceivable=80000&averageAccountsPayable=75000&averageWorkingCapital=150000&daysInPeriod=365",
  "queryParameters": {
    "netSales": {
      "label": "Net sales",
      "type": "money",
      "required": true,
      "default": 1000000
    },
    "costOfGoodsSold": {
      "label": "Cost of goods sold",
      "type": "money",
      "required": true,
      "default": 600000
    },
    "averageTotalAssets": {
      "label": "Average total assets",
      "type": "money",
      "required": true,
      "default": 500000
    },
    "averageInventory": {
      "label": "Average inventory",
      "type": "money",
      "required": true,
      "default": 100000
    },
    "averageAccountsReceivable": {
      "label": "Average accounts receivable",
      "type": "money",
      "required": true,
      "default": 80000
    },
    "averageAccountsPayable": {
      "label": "Average accounts payable",
      "type": "money",
      "required": true,
      "default": 75000
    },
    "averageWorkingCapital": {
      "label": "Average working capital",
      "type": "money",
      "required": true,
      "default": 150000
    },
    "daysInPeriod": {
      "label": "Days in analysis period",
      "type": "number",
      "required": true,
      "default": 365
    }
  },
  "inputs": [
    {
      "id": "netSales",
      "label": "Net sales",
      "type": "money",
      "required": true,
      "defaultValue": 1000000,
      "min": 0,
      "step": 100
    },
    {
      "id": "costOfGoodsSold",
      "label": "Cost of goods sold",
      "type": "money",
      "required": true,
      "defaultValue": 600000,
      "min": 0,
      "step": 100
    },
    {
      "id": "averageTotalAssets",
      "label": "Average total assets",
      "type": "money",
      "required": true,
      "defaultValue": 500000,
      "min": 0,
      "step": 100
    },
    {
      "id": "averageInventory",
      "label": "Average inventory",
      "type": "money",
      "required": true,
      "defaultValue": 100000,
      "min": 0,
      "step": 100
    },
    {
      "id": "averageAccountsReceivable",
      "label": "Average accounts receivable",
      "type": "money",
      "required": true,
      "defaultValue": 80000,
      "min": 0,
      "step": 100
    },
    {
      "id": "averageAccountsPayable",
      "label": "Average accounts payable",
      "type": "money",
      "required": true,
      "defaultValue": 75000,
      "min": 0,
      "step": 100
    },
    {
      "id": "averageWorkingCapital",
      "label": "Average working capital",
      "type": "money",
      "required": true,
      "defaultValue": 150000,
      "step": 100
    },
    {
      "id": "daysInPeriod",
      "label": "Days in analysis period",
      "type": "number",
      "required": true,
      "defaultValue": 365,
      "min": 1,
      "max": 366,
      "step": 1
    }
  ],
  "outputs": [
    {
      "id": "assetTurnover",
      "label": "Total asset turnover",
      "format": "number",
      "primary": true,
      "digits": 4,
      "suffix": "×"
    },
    {
      "id": "inventoryTurnover",
      "label": "Inventory turnover",
      "format": "number",
      "digits": 4,
      "suffix": "×"
    },
    {
      "id": "daysInventory",
      "label": "Days inventory outstanding",
      "format": "number",
      "digits": 2
    },
    {
      "id": "receivablesTurnover",
      "label": "Receivables turnover",
      "format": "number",
      "digits": 4,
      "suffix": "×"
    },
    {
      "id": "daysSalesOutstanding",
      "label": "Days sales outstanding",
      "format": "number",
      "digits": 2
    },
    {
      "id": "payablesTurnover",
      "label": "Payables turnover",
      "format": "number",
      "digits": 4,
      "suffix": "×"
    },
    {
      "id": "daysPayables",
      "label": "Days payables outstanding",
      "format": "number",
      "digits": 2
    },
    {
      "id": "workingCapitalTurnover",
      "label": "Working capital turnover",
      "format": "number",
      "digits": 4,
      "suffix": "×"
    }
  ],
  "formula": {
    "expression": "turnover = relevant flow ÷ average balance; days outstanding = period days ÷ turnover"
  },
  "examples": [
    {
      "label": "Reproducible default-input example (not a personal recommendation)",
      "inputs": {
        "netSales": 1000000,
        "costOfGoodsSold": 600000,
        "averageTotalAssets": 500000,
        "averageInventory": 100000,
        "averageAccountsReceivable": 80000,
        "averageAccountsPayable": 75000,
        "averageWorkingCapital": 150000,
        "daysInPeriod": 365
      }
    }
  ],
  "sources": []
}
