{
  "description": "Result of validating a tabular/record dataset.\n\nAttributes:\n    row_count: Number of rows inspected.\n    column_count: Number of columns.\n    null_rates: Per-column fraction of null/empty values.\n    duplicate_rows: Count of exact duplicate rows.\n    pii_columns: Columns whose values matched a PII pattern.\n    issues: Human-readable issues found.\n    passed: Whether the dataset passed all configured checks.",
  "properties": {
    "row_count": {
      "default": 0,
      "title": "Row Count",
      "type": "integer"
    },
    "column_count": {
      "default": 0,
      "title": "Column Count",
      "type": "integer"
    },
    "null_rates": {
      "additionalProperties": {
        "type": "number"
      },
      "title": "Null Rates",
      "type": "object"
    },
    "duplicate_rows": {
      "default": 0,
      "title": "Duplicate Rows",
      "type": "integer"
    },
    "pii_columns": {
      "items": {
        "type": "string"
      },
      "title": "Pii Columns",
      "type": "array"
    },
    "issues": {
      "items": {
        "type": "string"
      },
      "title": "Issues",
      "type": "array"
    },
    "passed": {
      "default": true,
      "title": "Passed",
      "type": "boolean"
    }
  },
  "title": "QualityReport",
  "type": "object"
}
