Property Data Type

Property object, representing a property of a Tag (a part of a tag in GCN)

Properties
name data type description
type Type Property Type
stringValue string String value
booleanValue boolean Boolean value
fileId number File ID
imageId number Image ID
folderId number Folder ID
pageId number Page ID
formId number Form ID
stringValues array of string String values
options array of SelectOption Possible options
selectedOptions array of SelectOption Selected options
datasourceId number Datasource ID
overview Overview Overview
templateId number Template ID
contentTagId number ContentTag ID
templateTagId number TemplateTag ID
nodeId number Get the node ID.
partId number Get the part id
id number Local ID
globalId string Global ID

Example

{
  "type" : "NAVIGATION",
  "stringValue" : "...",
  "booleanValue" : true,
  "fileId" : 12345,
  "imageId" : 12345,
  "folderId" : 12345,
  "pageId" : 12345,
  "formId" : 12345,
  "stringValues" : [ "...", "..." ],
  "options" : [ {
    "id" : 12345,
    "key" : "...",
    "value" : "..."
  }, {
    "id" : 12345,
    "key" : "...",
    "value" : "..."
  } ],
  "selectedOptions" : [ {
    "id" : 12345,
    "key" : "...",
    "value" : "..."
  }, {
    "id" : 12345,
    "key" : "...",
    "value" : "..."
  } ],
  "datasourceId" : 12345,
  "overview" : {
    "listType" : "UNDEFINED",
    "selectType" : "FOLDER",
    "orderDirection" : "DESC",
    "orderBy" : "FILESIZE",
    "selectedItemIds" : [ 12345, 12345 ],
    "selectedNodeItemIds" : [ {
      "nodeId" : 12345,
      "objectId" : 12345
    }, {
      "nodeId" : 12345,
      "objectId" : 12345
    } ],
    "source" : "...",
    "maxItems" : 12345,
    "recursive" : true,
    "id" : 12345,
    "globalId" : "..."
  },
  "templateId" : 12345,
  "contentTagId" : 12345,
  "templateTagId" : 12345,
  "nodeId" : 12345,
  "partId" : 12345,
  "id" : 12345,
  "globalId" : "..."
}