ion-hive-serde icon indicating copy to clipboard operation
ion-hive-serde copied to clipboard

Key Extraction

Open cheqianh opened this issue 3 years ago • 0 comments

Sometimes Ion keys are dynamic values that are not known during table creation.

Example:

Example Ion Doc: values "aaaaaaa" and "bbbbbbbb" would be unknown to user at table creation

{
    name: "John Foo",
    documents: {
        "aaaaaaa": {
            type: "drivers_license",
            date_issued: 2007-02-23,
            is_valid: true
        },
        "bbbbbbbb": {
            type: "license_plate",
            state: "Colorado",
            is_valid: true
        }
    }
}

We want Ion-hive-serde to be able to extract fields "aaaaaaa" and "bbbbbbbb" without identifying them.

cheqianh avatar Sep 23 '21 01:09 cheqianh