{
  "$ref": "#/definitions/DistributionValue",
  "definitions": {
    "DistributionValue": {
      "type": "object",
      "properties": {
        "x": {
          "type": "string",
          "minLength": 1,
          "description": "Bin label — exact value or range. Examples: \"10\" (exact), \"9-10\" (range), \"<5\" (open-ended)."
        },
        "value": {
          "type": "number",
          "description": "Probability mass or frequency for this bin. Typically a percentage (0–100) summing to ~100 across all bins, or a probability (0–1) summing to ~1."
        }
      },
      "required": [
        "x",
        "value"
      ],
      "additionalProperties": false,
      "description": "One bin of a probability or frequency distribution.\n\nLayer: aggregate (embedded in Distribution → Estimate → EstimateSnapshot)"
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#"
}