DocumentElementType Data Type

Abstract Type
Subtypes
ScannedDocumentElementType, LinkDocumentElementType, StructureCompositeDocumentElementType, FileDocumentElementType, ContentDocumentElementType
Properties
name data type description
nodeType DocumentNodeType
children array of DocumentElementType
variables map of string
creationDate number
Properties inherited from ResourceType
reference ReferenceType

Example

This data type is abstract. The example below may be incomplete. More accurate examples can be found in subtypes pages.
{
  "nodeType" : "CONTENT",
  "children" : [ {
    "nodeType" : "CONTENT",
    "children" : [ { }, { } ],
    "variables" : {
      "property1" : "...",
      "property2" : "..."
    },
    "creationDate" : 12345,
    "reference" : { }
  }, {
    "nodeType" : "CONTENT",
    "children" : [ { }, { } ],
    "variables" : {
      "property1" : "...",
      "property2" : "..."
    },
    "creationDate" : 12345,
    "reference" : { }
  } ],
  "variables" : {
    "property1" : "...",
    "property2" : "..."
  },
  "creationDate" : 12345,
  "reference" : { }
}