-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathdataQualityCheckImpact.json
More file actions
74 lines (74 loc) · 2.45 KB
/
dataQualityCheckImpact.json
File metadata and controls
74 lines (74 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"$id": "https://open-metadata.org/schema/tests/dataQualityCheckImpact.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "DataQualityCheckImpact",
"description": "Data Quality Check Impact model for ranking checks by business criticality.",
"type": "object",
"javaType": "org.openmetadata.schema.tests.DataQualityCheckImpact",
"properties": {
"testCaseId": {
"description": "Unique identifier of the test case.",
"$ref": "../type/basic.json#/definitions/uuid"
},
"testCaseFullyQualifiedName": {
"description": "Fully qualified name of the test case.",
"$ref": "../type/basic.json#/definitions/fullyQualifiedEntityName"
},
"testSuiteId": {
"description": "Unique identifier of the test suite.",
"$ref": "../type/basic.json#/definitions/uuid"
},
"testSuiteFullyQualifiedName": {
"description": "Fully qualified name of the test suite.",
"$ref": "../type/basic.json#/definitions/fullyQualifiedEntityName"
},
"entityFullyQualifiedName": {
"description": "The data entity this test case is testing.",
"$ref": "../type/basic.json#/definitions/fullyQualifiedEntityName"
},
"entityType": {
"description": "The type of entity being tested.",
"type": "string"
},
"impactScore": {
"description": "Calculated impact score (0-100) based on downstream usage, consumers, and incidents.",
"type": "number",
"minimum": 0,
"maximum": 100
},
"downstreamUsage": {
"description": "Number of downstream entities using this data.",
"type": "integer",
"minimum": 0
},
"consumerCount": {
"description": "Number of direct consumers of this data.",
"type": "integer",
"minimum": 0
},
"recentIncidents": {
"description": "Number of failed test results in the last 30 days.",
"type": "integer",
"minimum": 0
},
"lastFailedAt": {
"description": "Timestamp of the most recent test failure.",
"$ref": "../type/basic.json#/definitions/timestamp"
},
"testCaseStatus": {
"description": "Current status of the test case.",
"$ref": "./basic.json#/definitions/testCaseStatus"
},
"dataQualityDimension": {
"description": "Data quality dimension category.",
"type": "string"
}
},
"required": [
"testCaseId",
"testCaseFullyQualifiedName",
"impactScore",
"testCaseStatus"
],
"additionalProperties": false
}