forked from OpenLineage/OpenLineage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSchemaDatasetFacet.json
49 lines (49 loc) · 1.35 KB
/
SchemaDatasetFacet.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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://openlineage.io/spec/facets/1-0-0/SchemaDatasetFacet.json",
"$defs": {
"SchemaDatasetFacet": {
"allOf": [
{
"$ref": "https://openlineage.io/spec/1-0-2/OpenLineage.json#/$defs/DatasetFacet"
},
{
"type": "object",
"properties": {
"fields": {
"description": "The fields of the table.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"description": "The name of the field.",
"type": "string",
"example": "column1"
},
"type": {
"description": "The type of the field.",
"type": "string",
"example": "VARCHAR|INT|..."
},
"description": {
"description": "The description of the field.",
"type": "string"
}
},
"required": ["name"]
}
}
}
}
],
"type": "object"
}
},
"type": "object",
"properties": {
"schema": {
"$ref": "#/$defs/SchemaDatasetFacet"
}
}
}