{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/dice-roller/schema.json",
  "title": "Dice Roller inputs",
  "description": "Roll reproducible virtual dice using a saved seed.",
  "type": "object",
  "properties": {
    "sides": {
      "title": "Sides",
      "type": [
        "string",
        "number"
      ],
      "default": "6"
    },
    "count": {
      "title": "Count",
      "type": "number",
      "default": 1
    },
    "seed": {
      "title": "Seed",
      "type": "string",
      "description": "Same dice settings and seed produce the same roll.",
      "default": "askcalculators"
    }
  },
  "required": [
    "seed"
  ],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "7.0.0",
    "calculatorUrl": "https://askcalculators.com/calculator/dice-roller/",
    "queryExample": "https://askcalculators.com/calculator/dice-roller/?sides=6&count=1&seed=askcalculators",
    "migrationStatus": "migrated",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "migratedDate": "2026-08-18",
    "formula": {
      "expression": "A seeded pseudorandom sequence maps uniformly to integers from 1 through the selected number of sides."
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/dice-roller.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
      }
    }
  }
}
