Functionsparse_leefVersion: NextOn this pageparse_leefParses a string as a LEEF messageparse_leef(input:string) -> recordDescriptionThe parse_leef function parses a string as a LEEF messageinput: stringThe string to parse.Examplesfrom { x = "LEEF:1.0|Vendor|Product|Version|EventID|key=value" } y = x.parse_leef(){ x: "LEEF:1.0|Vendor|Product|Version|EventID|key=value", y: { "leef_version": "1.0", "vendor": "Microsoft", "product_name": "MSExchange", "product_version": "2016", "attributes": { "key": "value", } } }