All Downloads are FREE. Search and download functionalities are using the official Maven repository.

json.schema.tests.dataQualityReport.json Maven / Gradle / Ivy

There is a newer version: 1.6.0-rc1
Show newest version
{
  "$id": "https://open-metadata.org/schema/tests/dataQualityReport.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DataQualityReport",
  "description": "Data Quality report and aggregation model.",
  "type": "object",
  "javaType": "org.openmetadata.schema.tests.DataQualityReport",
  "definitions": {
    "dataQualityReportMetadata": {
      "description": "Schema to capture data quality reports and aggregation data.",
      "javaType": "org.openmetadata.schema.tests.type.DataQualityReportMetadata",
      "type": "object",
      "properties": {
        "keys": {
          "description": "Keys to identify the data quality report.",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "dimensions": {
          "description": "Dimensions to capture the data quality report.",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "metrics": {
          "description": "Metrics to capture the data quality report.",
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      }
    }
  },
  "properties": {
    "metadata": {
      "description": "Metadata for the data quality report.",
      "$ref": "#/definitions/dataQualityReportMetadata"
    },
    "data": {
      "description": "Data for the data quality report.",
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": {"type": "string"}
      }
    }
  },
  "required": ["metadata", "data"],
  "additionalProperties": false
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy