ChildrenData (JSON)
Data representation of a node's children - transfer object
Used to return data about an node's children when accessing children resource, e.g. http://10.10.10.10/das/v1/dgs:root/children
URI: | ChildrenData |
---|
Properties
Name | Type | Description | |
---|---|---|---|
position | string | Get the position from that last request. If the value is null, then there are no more children to retrieve. This value is used to request the next set of children. | |
children | array of Child | Get a list of the child nodes | |
baseUrl | string | Get the base URL string of this parent node. | |
templates | array of Template |
Example
{ "position" : "...", "children" : [ { "name" : "...", "apid" : "...", "locator" : "...", "order" : 12345 }, { "name" : "...", "apid" : "...", "locator" : "...", "order" : 12345 } ], "baseUrl" : "...", "templates" : [ { "name" : "...", "template" : "..." }, { "name" : "...", "template" : "..." } ] }