Skip to main content

Parameters

The Topology UI object schema includes the following attributes:

Attribute

Description

Type

links

Links present in the topology model. Every item in the array is comprised of a link source and a link target, as follows:

Attributes:

- source - The source tag of the link in the topology model.

- target - The target tag of the link in the topology model.

Array

created_at

Unix epoch time when the topology model was created (in seconds).

Number

created_by

The autogenerated ID of the user who created the topology model.

String

updated_at

Unix epoch time when the topology model was last updated (in seconds).

Number

updated_by

The autogenerated ID of the user who last updated the topology model.

String

Sample Object

{
      "links":[
         {
            "source":"host",
            "target":"check"
         },
         {
            "source":"host",
            "target":"cluster"
         }
      ]
}