Asset Graph API
{ urn:com.soa.assetgraph.api } AssetGraphAPI
The API for returning graphs of assets and their relationships to each other.
GET/assetgraphs/{AssetID}getAssetGraph
Parameters
Name
Type
Description
Model
AssetID
path
The asset's Id.
string
AssetType
query
The asset type
string
GraphType
query
Type of graph
string
Reponse
Produces application/jsonapplication/vnd.soa.v84+json
200
Success
graphNode
graphNode {
data( graphNodeData )
name( string )
adjacencies( Collection of graphEdge )
id( string )
}
graphNodeData {
hover( Collection of nameValuePair )
icon( string )
description( string )
url( graphNodeUrl )
}
nameValuePair {
name( string )
value( string )
}
graphNodeUrl {
name( string )
href( string )
}
graphEdge {
data( graphEdgeData )
nodeTo( string )
}
graphEdgeData {
hover( Collection of nameValuePair )
name( string )
$direction( Collection of string )
}