getProperties
Return properties for an asset.
Signature
Section titled “Signature”getProperties(node, source="all", output="json", filepath=None)
node(str)source(str, default: “all”)output(str):json(default),df,raw,filefilepath(str | None)
Inputs
Section titled “Inputs”node: Asset code to fetch properties for.source:allor a specific source name.output: Output format selector.filepath: Output file path used whenoutput="file".
Examples
Section titled “Examples”All sources
Section titled “All sources”properties = menu.getProperties("System_01", source="all")Specific source
Section titled “Specific source”properties = menu.getProperties("System_01", source="graphapi")DataFrame output
Section titled “DataFrame output”properties_df = menu.getProperties("System_01", source="all", output="df")