witty-keyboard-20400
10/04/2021, 3:58 PM"fields": [
{
"fieldPath": "[version=2.0].[type=boolean].field_foo_2",
"jsonPath": null,
"nullable": false,
"description": {
"string": "Foo field description"
},
"type": {
"type": {
"com.linkedin.pegasus2avro.schema.BooleanType": {}
}
},
"nativeDataType": "varchar(100)",
"globalTags": {
"tags": [{ "tag": "urn:li:tag:NeedsDocumentation" }]
},
"recursive": false
},
....
]
I checked the type for fieldPath, it's declared just as:
fieldPath: SchemaFieldPath
..and SchemaFieldPath is defined as:
typeref SchemaFieldPath = string
Question: Is there any significance of mentioning version and type: boolean in the SchemaFieldPath: "[version=2.0].[type=boolean].field_foo_2" ?miniature-tiger-96062
10/04/2021, 4:33 PM