StructureCompositeDocumentElementType Data Type

This document element representes a structure element that may have child documents i.e. is not a leaf.

Properties
name data type description
nodeType DocumentNodeType Returns the document node type.
children array of DocumentElementType Returns the document element children.
Properties inherited from DocumentElementType
creationDate number Returns the creation date.
variables map of string Returns the element variables.
nodeType DocumentNodeType Returns the document node type.
children array of DocumentElementType Returns the document element children.
Properties inherited from ResourceType
reference ReferenceType Returns the resource's object reference.

Example

{
  "nodeType" : "LINK",
  "children" : [ {
    "creationDate" : 12345,
    "variables" : {
      "property1" : "...",
      "property2" : "..."
    },
    "nodeType" : "CONTENT",
    "children" : [ { }, { } ],
    "reference" : { }
  }, {
    "creationDate" : 12345,
    "variables" : {
      "property1" : "...",
      "property2" : "..."
    },
    "nodeType" : "LINK",
    "children" : [ { }, { } ],
    "reference" : { }
  } ],
  "creationDate" : 12345,
  "variables" : {
    "property1" : "...",
    "property2" : "..."
  },
  "reference" : { }
}