Folder object, representing a Folder in GCN
| name | data type | constraints | description |
|---|---|---|---|
| id | number | ID of the item | |
| globalId | string | Global ID of the item | |
| name | string | Name of the item | |
| creator | User | read-only | Creator of the item |
| cdate | number | required int, read-only int | Creation date of the item as unix timestamp |
| editor | User | read-only | Last editor of the item |
| edate | number | required int, read-only int | Last Edit Date of the item as unix timestamp |
| type | ItemType | read-only | Item type |
| inheritedFrom | string | Name of the node this folder is inherited from | |
| deleted | DeleteInfo | read-only | Deletion information, if object was deleted |
| inheritedFromId | number | Id of the node this folder is inherited from. | |
| masterDeleted | DeleteInfo | read-only | Deletion information about the master (if the object is not a master itself). |
| masterNode | string | Name of the node, the master object belongs to | |
| folderDeleted | DeleteInfo | read-only | Deletion information about the containing folder. |
| masterNodeId | number | Return the id of the node, the master object belongs to. | |
| motherId | number | Mother id of the folder | |
| publishDir | string | Publish directory of the folder | |
| description | string | Description | |
| nodeId | number | Node id | |
| inherited | boolean | required boolean | True if the folder is inherited, false if not |
| atposidx | string | Position of the folder in the folder tree | |
| startPageId | object | ID of the startpage | |
| map of Tag | Map of object tags of the folder | ||
| subfolders | array of Folder | List of subfolders | |
| hasSubfolders | boolean | required boolean | True if the folder has subfolders (regardless of whether they have been fetched), false if not |
| privileges | array of Privilege | Folder privileges | |
| privilegeBits | string | Privilege bits | |
| privilegeMap | PrivilegeMap | Map representation of all privileges | |
| path | string | Folder path of this folder | |
| masterId | number | Master ID. The master is the next folder up in the channel hierarchy with the same Channelset ID. The Master ID is 0 if there is no master. Read only. | |
| channelsetId | number | Channelset ID. All copies of the same folder in different channels share the same Channelset ID. Read only. | |
| channelId | number | Channel ID. It identifies different versions of the same folder in different channels. Equals to the node id for which the folder is defined, or to 0 if it is defined in the topost node of the channel hierarchy. Read only. | |
| isMaster | boolean | True if the folder is a master, false otherwise. A folder is a master if it isn't a localized copy of another folder. Read only. | |
| disinheritedChannels | array of Node | the set of disinherited channels for this object | |
| excluded | boolean | Whether this folder is excluded from multichannelling. | |
| disinheritDefault | boolean | Whether this folder is disinherited by default in new channels. | |
| disinherited | boolean | True if the folder is disinherited in some channels | |
| meshProject | string | Mesh Project, this node publishes into. This will only be set for root folders | |
| array of BreadcrumbItem | read-only | Breadcrums of the folder. The first item is the root folder and the last item the folder itself | |
| nameI18n | map of string | Map of translated names (keys are the language codes) | |
| descriptionI18n | map of string | Map of translated descriptions (keys are the language codes) | |
| publishDirI18n | map of string | Map of translated publish directories (keys are the language codes) |
Example
{
"id" : 12345,
"globalId" : "...",
"name" : "...",
"creator" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ {
"id" : 12345,
"name" : "...",
"description" : "...",
"children" : [ { }, { } ]
}, {
"id" : 12345,
"name" : "...",
"description" : "...",
"children" : [ { }, { } ]
} ],
"login" : "...",
"password" : "..."
},
"cdate" : 12345,
"editor" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ {
"id" : 12345,
"name" : "...",
"description" : "...",
"children" : [ { }, { } ]
}, {
"id" : 12345,
"name" : "...",
"description" : "...",
"children" : [ { }, { } ]
} ],
"login" : "...",
"password" : "..."
},
"edate" : 12345,
"type" : "file",
"inheritedFrom" : "...",
"deleted" : {
"at" : 12345,
"by" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
}
},
"inheritedFromId" : 12345,
"masterDeleted" : {
"at" : 12345,
"by" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
}
},
"masterNode" : "...",
"folderDeleted" : {
"at" : 12345,
"by" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
}
},
"masterNodeId" : 12345,
"motherId" : 12345,
"publishDir" : "...",
"description" : "...",
"nodeId" : 12345,
"inherited" : true,
"atposidx" : "...",
"startPageId" : { },
"tags" : {
"property1" : {
"id" : 12345,
"name" : "...",
"constructId" : 12345,
"construct" : {
"keyword" : "...",
"mayBeSubtag" : true,
"mayContainSubtags" : true,
"id" : 12345,
"globalId" : "...",
"name" : "...",
"description" : "...",
"creator" : { },
"cdate" : 12345,
"editor" : { },
"edate" : 12345,
"category" : { },
"externalEditorUrl" : "...",
"parts" : [ { }, { } ],
"visibleInMenu" : true,
"nameI18n" : {
"property1" : "...",
"property2" : "..."
},
"descriptionI18n" : {
"property1" : "...",
"property2" : "..."
},
"autoEnable" : true,
"liveEditorTagName" : "...",
"openEditorOnInsert" : true,
"editorControlStyle" : "ABOVE",
"editorControlsInside" : true,
"categoryId" : 12345
},
"active" : true,
"properties" : {
"property1" : {
"type" : "TABLE",
"stringValue" : "...",
"booleanValue" : true,
"fileId" : 12345,
"imageId" : 12345,
"folderId" : 12345,
"pageId" : 12345,
"formId" : 12345,
"stringValues" : [ "...", "..." ],
"options" : [ { }, { } ],
"selectedOptions" : [ { }, { } ],
"datasourceId" : 12345,
"overview" : { },
"templateId" : 12345,
"contentTagId" : 12345,
"templateTagId" : 12345,
"nodeId" : 12345,
"partId" : 12345,
"id" : 12345,
"globalId" : "..."
},
"property2" : {
"type" : "FORM",
"stringValue" : "...",
"booleanValue" : true,
"fileId" : 12345,
"imageId" : 12345,
"folderId" : 12345,
"pageId" : 12345,
"formId" : 12345,
"stringValues" : [ "...", "..." ],
"options" : [ { }, { } ],
"selectedOptions" : [ { }, { } ],
"datasourceId" : 12345,
"overview" : { },
"templateId" : 12345,
"contentTagId" : 12345,
"templateTagId" : 12345,
"nodeId" : 12345,
"partId" : 12345,
"id" : 12345,
"globalId" : "..."
}
},
"type" : "CONTENTTAG"
},
"property2" : {
"id" : 12345,
"name" : "...",
"constructId" : 12345,
"construct" : {
"keyword" : "...",
"mayBeSubtag" : true,
"mayContainSubtags" : true,
"id" : 12345,
"globalId" : "...",
"name" : "...",
"description" : "...",
"creator" : { },
"cdate" : 12345,
"editor" : { },
"edate" : 12345,
"category" : { },
"externalEditorUrl" : "...",
"parts" : [ { }, { } ],
"visibleInMenu" : true,
"nameI18n" : {
"property1" : "...",
"property2" : "..."
},
"descriptionI18n" : {
"property1" : "...",
"property2" : "..."
},
"autoEnable" : true,
"liveEditorTagName" : "...",
"openEditorOnInsert" : true,
"editorControlStyle" : "ABOVE",
"editorControlsInside" : true,
"categoryId" : 12345
},
"active" : true,
"properties" : {
"property1" : {
"type" : "LIST",
"stringValue" : "...",
"booleanValue" : true,
"fileId" : 12345,
"imageId" : 12345,
"folderId" : 12345,
"pageId" : 12345,
"formId" : 12345,
"stringValues" : [ "...", "..." ],
"options" : [ { }, { } ],
"selectedOptions" : [ { }, { } ],
"datasourceId" : 12345,
"overview" : { },
"templateId" : 12345,
"contentTagId" : 12345,
"templateTagId" : 12345,
"nodeId" : 12345,
"partId" : 12345,
"id" : 12345,
"globalId" : "..."
},
"property2" : {
"type" : "FOLDER",
"stringValue" : "...",
"booleanValue" : true,
"fileId" : 12345,
"imageId" : 12345,
"folderId" : 12345,
"pageId" : 12345,
"formId" : 12345,
"stringValues" : [ "...", "..." ],
"options" : [ { }, { } ],
"selectedOptions" : [ { }, { } ],
"datasourceId" : 12345,
"overview" : { },
"templateId" : 12345,
"contentTagId" : 12345,
"templateTagId" : 12345,
"nodeId" : 12345,
"partId" : 12345,
"id" : 12345,
"globalId" : "..."
}
},
"type" : "CONTENTTAG"
}
},
"subfolders" : [ {
"id" : 12345,
"globalId" : "...",
"name" : "...",
"creator" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
},
"cdate" : 12345,
"editor" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
},
"edate" : 12345,
"type" : "channel",
"inheritedFrom" : "...",
"deleted" : {
"at" : 12345,
"by" : { }
},
"inheritedFromId" : 12345,
"masterDeleted" : {
"at" : 12345,
"by" : { }
},
"masterNode" : "...",
"folderDeleted" : {
"at" : 12345,
"by" : { }
},
"masterNodeId" : 12345,
"motherId" : 12345,
"publishDir" : "...",
"description" : "...",
"nodeId" : 12345,
"inherited" : true,
"atposidx" : "...",
"startPageId" : { },
"tags" : {
"property1" : {
"id" : 12345,
"name" : "...",
"constructId" : 12345,
"construct" : { },
"active" : true,
"properties" : {
"property1" : { },
"property2" : { }
},
"type" : "TEMPLATETAG"
},
"property2" : {
"id" : 12345,
"name" : "...",
"constructId" : 12345,
"construct" : { },
"active" : true,
"properties" : {
"property1" : { },
"property2" : { }
},
"type" : "OBJECTTAG"
}
},
"subfolders" : [ { }, { } ],
"hasSubfolders" : true,
"privileges" : [ "translatepage", "viewtemplate" ],
"privilegeBits" : "...",
"privilegeMap" : {
"privileges" : {
"property1" : true,
"property2" : true
},
"languages" : [ { }, { } ]
},
"path" : "...",
"masterId" : 12345,
"channelsetId" : 12345,
"channelId" : 12345,
"isMaster" : true,
"disinheritedChannels" : [ {
"id" : 12345,
"globalId" : "...",
"name" : "...",
"creator" : { },
"folderId" : 12345,
"cdate" : 12345,
"editor" : { },
"publishDir" : "...",
"edate" : 12345,
"type" : "folder",
"binaryPublishDir" : "...",
"pubDirSegment" : true,
"deleted" : { },
"publishImageVariants" : true,
"host" : "...",
"masterDeleted" : { },
"hostProperty" : "...",
"folderDeleted" : { },
"publishFs" : true,
"publishFsPages" : true,
"publishFsFiles" : true,
"publishContentMap" : true,
"publishContentMapPages" : true,
"publishContentMapFiles" : true,
"publishContentMapFolders" : true,
"contentRepositoryId" : 12345,
"disablePublish" : true,
"editorVersion" : 12345,
"contentEditor" : "AlohaEditor",
"defaultFileFolderId" : 12345,
"defaultImageFolderId" : 12345,
"languagesId" : [ 12345, 12345 ],
"masterId" : 12345,
"inheritedFromId" : 12345,
"inheritedFromName" : "...",
"masterNodeId" : 12345,
"urlRenderWayPages" : 12345,
"urlRenderWayFiles" : 12345,
"meshPreviewUrl" : "...",
"meshPreviewUrlProperty" : "...",
"insecurePreviewUrl" : true,
"meshProject" : "...",
"meshProjectName" : "...",
"omitPageExtension" : true,
"pageLanguageCode" : "FILENAME",
"masterName" : "...",
"contentRepositoryName" : "..."
}, {
"id" : 12345,
"globalId" : "...",
"name" : "...",
"creator" : { },
"folderId" : 12345,
"cdate" : 12345,
"editor" : { },
"publishDir" : "...",
"edate" : 12345,
"type" : "channel",
"binaryPublishDir" : "...",
"pubDirSegment" : true,
"deleted" : { },
"publishImageVariants" : true,
"host" : "...",
"masterDeleted" : { },
"hostProperty" : "...",
"folderDeleted" : { },
"publishFs" : true,
"publishFsPages" : true,
"publishFsFiles" : true,
"publishContentMap" : true,
"publishContentMapPages" : true,
"publishContentMapFiles" : true,
"publishContentMapFolders" : true,
"contentRepositoryId" : 12345,
"disablePublish" : true,
"editorVersion" : 12345,
"contentEditor" : "LiveEditor",
"defaultFileFolderId" : 12345,
"defaultImageFolderId" : 12345,
"languagesId" : [ 12345, 12345 ],
"masterId" : 12345,
"inheritedFromId" : 12345,
"inheritedFromName" : "...",
"masterNodeId" : 12345,
"urlRenderWayPages" : 12345,
"urlRenderWayFiles" : 12345,
"meshPreviewUrl" : "...",
"meshPreviewUrlProperty" : "...",
"insecurePreviewUrl" : true,
"meshProject" : "...",
"meshProjectName" : "...",
"omitPageExtension" : true,
"pageLanguageCode" : "FILENAME",
"masterName" : "...",
"contentRepositoryName" : "..."
} ],
"excluded" : true,
"disinheritDefault" : true,
"disinherited" : true,
"meshProject" : "...",
"breadcrumbs" : [ {
"id" : 28,
"globalId" : "0737.1de1eecb-059c-11f0-ae44-482ae36fb1c5",
"name" : "Home"
}, {
"id" : 799,
"globalId" : "0737.c2b67126-0303-11f0-ae44-482ae36fb1c5",
"name" : "News"
} ],
"nameI18n" : {
"property1" : "...",
"property2" : "..."
},
"descriptionI18n" : {
"property1" : "...",
"property2" : "..."
},
"publishDirI18n" : {
"property1" : "...",
"property2" : "..."
}
}, {
"id" : 12345,
"globalId" : "...",
"name" : "...",
"creator" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
},
"cdate" : 12345,
"editor" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
},
"edate" : 12345,
"type" : "node",
"inheritedFrom" : "...",
"deleted" : {
"at" : 12345,
"by" : { }
},
"inheritedFromId" : 12345,
"masterDeleted" : {
"at" : 12345,
"by" : { }
},
"masterNode" : "...",
"folderDeleted" : {
"at" : 12345,
"by" : { }
},
"masterNodeId" : 12345,
"motherId" : 12345,
"publishDir" : "...",
"description" : "...",
"nodeId" : 12345,
"inherited" : true,
"atposidx" : "...",
"startPageId" : { },
"tags" : {
"property1" : {
"id" : 12345,
"name" : "...",
"constructId" : 12345,
"construct" : { },
"active" : true,
"properties" : {
"property1" : { },
"property2" : { }
},
"type" : "TEMPLATETAG"
},
"property2" : {
"id" : 12345,
"name" : "...",
"constructId" : 12345,
"construct" : { },
"active" : true,
"properties" : {
"property1" : { },
"property2" : { }
},
"type" : "CONTENTTAG"
}
},
"subfolders" : [ { }, { } ],
"hasSubfolders" : true,
"privileges" : [ "publishpage", "inheritance" ],
"privilegeBits" : "...",
"privilegeMap" : {
"privileges" : {
"property1" : true,
"property2" : true
},
"languages" : [ { }, { } ]
},
"path" : "...",
"masterId" : 12345,
"channelsetId" : 12345,
"channelId" : 12345,
"isMaster" : true,
"disinheritedChannels" : [ {
"id" : 12345,
"globalId" : "...",
"name" : "...",
"creator" : { },
"folderId" : 12345,
"cdate" : 12345,
"editor" : { },
"publishDir" : "...",
"edate" : 12345,
"type" : "page",
"binaryPublishDir" : "...",
"pubDirSegment" : true,
"deleted" : { },
"publishImageVariants" : true,
"host" : "...",
"masterDeleted" : { },
"hostProperty" : "...",
"folderDeleted" : { },
"publishFs" : true,
"publishFsPages" : true,
"publishFsFiles" : true,
"publishContentMap" : true,
"publishContentMapPages" : true,
"publishContentMapFiles" : true,
"publishContentMapFolders" : true,
"contentRepositoryId" : 12345,
"disablePublish" : true,
"editorVersion" : 12345,
"contentEditor" : "LiveEditor",
"defaultFileFolderId" : 12345,
"defaultImageFolderId" : 12345,
"languagesId" : [ 12345, 12345 ],
"masterId" : 12345,
"inheritedFromId" : 12345,
"inheritedFromName" : "...",
"masterNodeId" : 12345,
"urlRenderWayPages" : 12345,
"urlRenderWayFiles" : 12345,
"meshPreviewUrl" : "...",
"meshPreviewUrlProperty" : "...",
"insecurePreviewUrl" : true,
"meshProject" : "...",
"meshProjectName" : "...",
"omitPageExtension" : true,
"pageLanguageCode" : "FILENAME",
"masterName" : "...",
"contentRepositoryName" : "..."
}, {
"id" : 12345,
"globalId" : "...",
"name" : "...",
"creator" : { },
"folderId" : 12345,
"cdate" : 12345,
"editor" : { },
"publishDir" : "...",
"edate" : 12345,
"type" : "form",
"binaryPublishDir" : "...",
"pubDirSegment" : true,
"deleted" : { },
"publishImageVariants" : true,
"host" : "...",
"masterDeleted" : { },
"hostProperty" : "...",
"folderDeleted" : { },
"publishFs" : true,
"publishFsPages" : true,
"publishFsFiles" : true,
"publishContentMap" : true,
"publishContentMapPages" : true,
"publishContentMapFiles" : true,
"publishContentMapFolders" : true,
"contentRepositoryId" : 12345,
"disablePublish" : true,
"editorVersion" : 12345,
"contentEditor" : "AlohaEditor",
"defaultFileFolderId" : 12345,
"defaultImageFolderId" : 12345,
"languagesId" : [ 12345, 12345 ],
"masterId" : 12345,
"inheritedFromId" : 12345,
"inheritedFromName" : "...",
"masterNodeId" : 12345,
"urlRenderWayPages" : 12345,
"urlRenderWayFiles" : 12345,
"meshPreviewUrl" : "...",
"meshPreviewUrlProperty" : "...",
"insecurePreviewUrl" : true,
"meshProject" : "...",
"meshProjectName" : "...",
"omitPageExtension" : true,
"pageLanguageCode" : "FILENAME",
"masterName" : "...",
"contentRepositoryName" : "..."
} ],
"excluded" : true,
"disinheritDefault" : true,
"disinherited" : true,
"meshProject" : "...",
"breadcrumbs" : [ {
"id" : 799,
"globalId" : "0737.c2b67126-0303-11f0-ae44-482ae36fb1c5",
"name" : "News"
}, {
"id" : 799,
"globalId" : "0737.c2b67126-0303-11f0-ae44-482ae36fb1c5",
"name" : "News"
} ],
"nameI18n" : {
"property1" : "...",
"property2" : "..."
},
"descriptionI18n" : {
"property1" : "...",
"property2" : "..."
},
"publishDirI18n" : {
"property1" : "...",
"property2" : "..."
}
} ],
"hasSubfolders" : true,
"privileges" : [ "linkworkflow", "createpage" ],
"privilegeBits" : "...",
"privilegeMap" : {
"privileges" : {
"property1" : true,
"property2" : true
},
"languages" : [ {
"language" : { },
"privileges" : {
"property1" : true,
"property2" : true
}
}, {
"language" : { },
"privileges" : {
"property1" : true,
"property2" : true
}
} ]
},
"path" : "...",
"masterId" : 12345,
"channelsetId" : 12345,
"channelId" : 12345,
"isMaster" : true,
"disinheritedChannels" : [ {
"id" : 12345,
"globalId" : "...",
"name" : "...",
"creator" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
},
"folderId" : 12345,
"cdate" : 12345,
"editor" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
},
"publishDir" : "...",
"edate" : 12345,
"type" : "form",
"binaryPublishDir" : "...",
"pubDirSegment" : true,
"deleted" : {
"at" : 12345,
"by" : { }
},
"publishImageVariants" : true,
"host" : "...",
"masterDeleted" : {
"at" : 12345,
"by" : { }
},
"hostProperty" : "...",
"folderDeleted" : {
"at" : 12345,
"by" : { }
},
"publishFs" : true,
"publishFsPages" : true,
"publishFsFiles" : true,
"publishContentMap" : true,
"publishContentMapPages" : true,
"publishContentMapFiles" : true,
"publishContentMapFolders" : true,
"contentRepositoryId" : 12345,
"disablePublish" : true,
"editorVersion" : 12345,
"contentEditor" : "AlohaEditor",
"defaultFileFolderId" : 12345,
"defaultImageFolderId" : 12345,
"languagesId" : [ 12345, 12345 ],
"masterId" : 12345,
"inheritedFromId" : 12345,
"inheritedFromName" : "...",
"masterNodeId" : 12345,
"urlRenderWayPages" : 12345,
"urlRenderWayFiles" : 12345,
"meshPreviewUrl" : "...",
"meshPreviewUrlProperty" : "...",
"insecurePreviewUrl" : true,
"meshProject" : "...",
"meshProjectName" : "...",
"omitPageExtension" : true,
"pageLanguageCode" : "NONE",
"masterName" : "...",
"contentRepositoryName" : "..."
}, {
"id" : 12345,
"globalId" : "...",
"name" : "...",
"creator" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
},
"folderId" : 12345,
"cdate" : 12345,
"editor" : {
"id" : 12345,
"firstName" : "...",
"lastName" : "...",
"description" : "...",
"email" : "...",
"groups" : [ { }, { } ],
"login" : "...",
"password" : "..."
},
"publishDir" : "...",
"edate" : 12345,
"type" : "image",
"binaryPublishDir" : "...",
"pubDirSegment" : true,
"deleted" : {
"at" : 12345,
"by" : { }
},
"publishImageVariants" : true,
"host" : "...",
"masterDeleted" : {
"at" : 12345,
"by" : { }
},
"hostProperty" : "...",
"folderDeleted" : {
"at" : 12345,
"by" : { }
},
"publishFs" : true,
"publishFsPages" : true,
"publishFsFiles" : true,
"publishContentMap" : true,
"publishContentMapPages" : true,
"publishContentMapFiles" : true,
"publishContentMapFolders" : true,
"contentRepositoryId" : 12345,
"disablePublish" : true,
"editorVersion" : 12345,
"contentEditor" : "LiveEditor",
"defaultFileFolderId" : 12345,
"defaultImageFolderId" : 12345,
"languagesId" : [ 12345, 12345 ],
"masterId" : 12345,
"inheritedFromId" : 12345,
"inheritedFromName" : "...",
"masterNodeId" : 12345,
"urlRenderWayPages" : 12345,
"urlRenderWayFiles" : 12345,
"meshPreviewUrl" : "...",
"meshPreviewUrlProperty" : "...",
"insecurePreviewUrl" : true,
"meshProject" : "...",
"meshProjectName" : "...",
"omitPageExtension" : true,
"pageLanguageCode" : "FILENAME",
"masterName" : "...",
"contentRepositoryName" : "..."
} ],
"excluded" : true,
"disinheritDefault" : true,
"disinherited" : true,
"meshProject" : "...",
"breadcrumbs" : [ {
"id" : 28,
"globalId" : "0737.1de1eecb-059c-11f0-ae44-482ae36fb1c5",
"name" : "Home"
}, {
"id" : 799,
"globalId" : "0737.c2b67126-0303-11f0-ae44-482ae36fb1c5",
"name" : "News"
} ],
"nameI18n" : {
"property1" : "...",
"property2" : "..."
},
"descriptionI18n" : {
"property1" : "...",
"property2" : "..."
},
"publishDirI18n" : {
"property1" : "...",
"property2" : "..."
}
}