NodeData (JSON)
Data representation of a node - transfer object
Properties
Name |
Type |
Description |
|
name |
string
|
Get name of the node, e.g. 004110000 |
|
apid |
string
|
Get the node's apid |
|
templates |
array of
Template
|
|
|
childCount |
number
|
Get the number of children |
|
streamCount |
number
|
Get the node's stream count |
|
lastMod |
number
|
Returns the last modification date for the node. |
|
link |
array of
Link
|
|
|
Example
{
"name" : "...",
"apid" : "...",
"templates" : [ {
"name" : "...",
"template" : "..."
}, {
"name" : "...",
"template" : "..."
} ],
"childCount" : 12345,
"streamCount" : 12345,
"lastMod" : 12345,
"link" : [ {
"href" : "...",
"rel" : "...",
"type" : "..."
}, {
"href" : "...",
"rel" : "...",
"type" : "..."
} ]
}