metatron-app / metatron-discovery

Powerful & Easy way for big data discovery
https://metatron.app
Apache License 2.0
440 stars 110 forks source link

Support type expression in relay aggregator #4269

Open navis opened 1 year ago

navis commented 1 year ago
{"name": "ci_profile", "typeName": "struct(base:boolean,life_style:string,segment:string,shopping_channel:string,family:struct(fmly_memb_cnt:int,hhld_memb_cnt:int,child_y:boolean,adult_child_y:boolean,married:boolean))"}

or

{"name": "ci_profile", "typeExpression": {
  "base": "boolean",
  "life_style" : "string",
  "segment" : "string",
  "shopping_channel" : "string",
  "family": {
    "fmly_memb_cnt": "int",
    "hhld_memb_cnt": "int",
    "child_y": "boolean",
    "adult_child_y": "boolean",
    "married": "boolean"
  }
}}