{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/expanded-form-calculator/schema.json",
  "title": "Expanded Form Calculator inputs",
  "description": "Write an integer or decimal as a sum of place-value terms.",
  "type": "object",
  "properties": {
    "number": {
      "title": "Number",
      "type": "string",
      "default": "4072.305"
    }
  },
  "required": [
    "number"
  ],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "1.0.0",
    "calculatorUrl": "https://askcalculators.com/calculator/expanded-form-calculator/",
    "queryExample": "https://askcalculators.com/calculator/expanded-form-calculator/?number=4072.305",
    "migrationStatus": "new",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "formula": {
      "expression": "each nonzero digit contributes digit × 10^place"
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/expanded-form-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": {
      "expandedForm": {
        "title": "Expanded form",
        "type": "string",
        "x-format": "text",
        "x-primary": true
      },
      "wordedPowers": {
        "title": "Power-of-ten form",
        "type": "string",
        "x-format": "text"
      },
      "normalizedNumber": {
        "title": "Normalized number",
        "type": "string",
        "x-format": "text"
      }
    }
  }
}
