noteDefinition

Namespace: (default namespace)
XML Schema: api.xsd

Note Definition is used to create notes on any network object such as Interfaces, LSPs, Nodes,
Demands, Interface Queues, Custom tables.

Each network object is identified by its keys which have a name and corresponding value associated with it.
For Example, Interface has "node" and "name" attribute defined as keys.

JSON Example


{
  "objectType": "Interfaces",
  "keyAttributes" : [
  {
   "name" : "name",
   "value" : "TenGigE0/0/1"
  },
  {
   "name" : "node",
   "value" : "AM_ATL_ER2"
  }
  ],
  "note": "notes-1"
  }

JSON

property type description
objectType objectType (string) Object name.
Examples : Interfaces, LSPs, Nodes, Demands etc
keyAttributes array of keyAttributes (noteKey) Key attributes.
Example: For Interfaces, provide name and node details
note note (string) Note data.
Size is limited to maximum size of 30,000 bytes.