This repository has been archived by the owner on Dec 14, 2022. It is now read-only.
forked from GoogleCloudPlatform/auto-data-tokenize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
inspection_results_bigquery_schema.json
75 lines (75 loc) · 1.88 KB
/
inspection_results_bigquery_schema.json
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
75
[
{
"name": "timestamp",
"type": "TIMESTAMP",
"mode": "REQUIRED",
"description": "Timestamp of inspection report generation."
},
{
"name": "source_type",
"type": "STRING",
"mode": "REQUIRED",
"description": "The type of source inspected."
},
{
"name": "input_pattern",
"type": "STRING",
"mode": "REQUIRED",
"description": "The input pattern inspected. Name of the table for BIGQUERY_TABLE or JDBC_TABLE sourceTypes, GCS file patterns for AVRO/PARQUET."
},
{
"name": "avro_schema",
"type": "STRING",
"mode": "REQUIRED",
"description": "The equivalent AVRO Schema Json"
},
{
"name": "jdbc_configuration",
"type": "RECORD",
"mode": "NULLABLE",
"description": "The JDBC connection details if source_type is JDBC_TABLE",
"fields": [
{
"name": "connection_url",
"type": "STRING",
"mode": "REQUIRED"
},
{
"name": "driver_class_name",
"type": "STRING",
"mode": "REQUIRED",
"description": "The input pattern inspected. Name of the table for BIGQUERY_TABLE or JDBC_TABLE sourceTypes, GCS file patterns for AVRO/PARQUET."
}
]
},
{
"name": "column_report",
"type": "RECORD",
"mode": "REPEATED",
"description": "Sensitive inspection results aggregated for columns. Empty means no sensitive infotypes were detected in the data source.",
"fields" : [
{
"name": "column_name",
"type": "STRING",
"mode": "REQUIRED"
},
{
"name": "info_types",
"type": "RECORD",
"mode": "REPEATED",
"fields": [
{
"name": "info_type",
"type": "STRING",
"mode": "REQUIRED"
},
{
"name": "count",
"type": "INTEGER",
"mode": "REQUIRED"
}
]
}
]
}
]