forked from OpenLineage/OpenLineage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SchemaDatasetFacet.json
59 lines (59 loc) · 1.47 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
50
51
52
53
54
55
56
57
58
59
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://openlineage.io/spec/facets/1-1-1/SchemaDatasetFacet.json",
"$defs": {
"SchemaDatasetFacetFields": {
"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"
},
"fields": {
"description": "Nested struct fields.",
"type": "array",
"items": {
"$ref": "#/$defs/SchemaDatasetFacetFields"
}
}
},
"required": ["name"]
},
"SchemaDatasetFacet": {
"allOf": [
{
"$ref": "https://openlineage.io/spec/2-0-2/OpenLineage.json#/$defs/DatasetFacet"
},
{
"type": "object",
"properties": {
"fields": {
"description": "The fields of the data source.",
"type": "array",
"items": {
"$ref": "#/$defs/SchemaDatasetFacetFields"
}
}
}
}
],
"type": "object"
}
},
"type": "object",
"properties": {
"schema": {
"$ref": "#/$defs/SchemaDatasetFacet"
}
}
}