treepath()
Gilt für: ✅Microsoft Fabric✅Azure Data Explorer✅Azure Monitor✅Microsoft Sentinel
Listet alle Path-Ausdrücke auf, die Verzweigungen in einem dynamischen Objekt identifizieren.
Syntax
treepath(
object)
Erfahren Sie mehr über Syntaxkonventionen.
Parameter
Name | Type | Erforderlich | Beschreibung |
---|---|---|---|
object | dynamic |
✔️ | Ein dynamisches Eigenschaftenbehälterobjekt, für das die Pfadausdrücke aufgelistet werden sollen. |
Gibt zurück
Ein Array von Path-Ausdrücken.
Beispiele
Ausdruck | Auswertungsergebnis |
---|---|
treepath(parse_json('{"a":"b", "c":123}')) |
["['a']","['c']"] |
treepath(parse_json('{"prop1":[1,2,3,4], "prop2":"value2"}')) |
["['prop1']","['prop1'][0]","['prop2']"] |
treepath(parse_json('{"listProperty":[100,200,300,"abcde",{"x":"y"}]}')) |
["['listProperty']","['listProperty'][0]","['listProperty'][0]['x']"] |