app/test-tools/dxa-mock/dxa-mock.service.ts
Methods |
|
constructor()
|
Public addRegion | ||||||||||||
addRegion(regionName: string, DXAJson)
|
||||||||||||
Parameters :
Returns :
void
no return value, adds the region to the passed parameter |
Public addToRegion | ||||||||||||||||
addToRegion(regionName: string, DXAEntity, DXAJson)
|
||||||||||||||||
Parameters :
Returns :
void
no return value, adds the region to the passed parameter |
Public generateEntity | ||||||||||||
generateEntity(ViewName: string, data?: literal type)
|
||||||||||||
Parameters :
Returns :
{ MvcData: { ControllerAreaName: string; ControllerName: string; ActionName: string; AreaName: st...
json for the entity |
Public navigation |
navigation()
|
Returns :
any
|
import { Injectable } from '@angular/core';
@Injectable()
export class DxaMockService {
constructor() { }
/** @param ViewName ViewName of the new entity (component template)
* @param data optional parameter. Passed object will be added to the root of the entity.
* @returns json for the entity */
public generateEntity(ViewName: string, data?: {}) {
const entity = {
MvcData: {
ControllerAreaName: 'Framework',
ControllerName: 'Entity',
ActionName: 'Entity',
AreaName: 'r32',
ViewName: ViewName
},
Id: '12345'
};
// Add extra fields if they are present
for (var key in data) {
entity[key] = data[key]
}
return entity;
}
/**
*
* @param regionName name of the region
* @param DXAJson json to add the new region to. Which should initialy be created by the generateInitalJSON
* @returns no return value, adds the region to the passed parameter
*/
public addRegion(regionName: string, DXAJson) {
if (!DXAJson.page.Regions) {
DXAJson.page.Regions = [];
}
const regionAlreadyPresent = DXAJson.page.Regions.find(e => e.Name === regionName);
if (regionAlreadyPresent) {
return;
}
const region = {
ExtensionData: null,
MvcData: {
ControllerAreaName: 'Framework',
ControllerName: 'Region',
ActionName: 'Region',
AreaName: 'Core',
ViewName: regionName
},
Name: regionName,
Entities: [],
Regions: []
};
DXAJson.page.Regions.push(region);
}
/**
*
* @param regionName name of the region to add the entity to
* @param DXAEntity the entity to add to the region. Should be created by the generateEntity function
* @param DXAJson json to add the new region to. Which should initialy be created by the generateInitalJSON
* @returns no return value, adds the region to the passed parameter
*/
public addToRegion(regionName: string, DXAEntity, DXAJson) {
if (!DXAJson.page.Regions || !DXAJson.page.Regions.find(e => e.Name === regionName)) {
this.addRegion(regionName, DXAJson);
}
const regionToAddTo = DXAJson.page.Regions.find(e => e.Name === regionName);
regionToAddTo.Entities.push(DXAEntity);
}
/**
*
* @param names can be passed if needed to set custom viewName, url or title of the page. example generateInitalJson({viewName: 'my-viewName', url: 'myurl.com'})
* @returns the json that can then be passed to the addToRegion function to add custom entitys and regions
*/
public generateInitalJSON(names?: {}) {
const params = names || {};
const viewName = params['viewName'] || 'defaultName';
const url = params['Url'] || 'defaultUrl';
const title = params['Title'] || 'defaultTitle';
return {
navigation: { Items: [] },
page: {
Id: '455566',
MvcData: {
ControllerAreaName: 'Framework',
ControllerName: 'Page',
ActionName: 'Page',
AreaName: 'Core',
ViewName: viewName
},
Title: title,
Url: url,
Meta: {},
Regions: []
}
};
}
public navigation(): any {
return {
'Id': 'tcm:307-110-4',
'Title': 'Root',
'Url': '/group',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454490-64',
'Title': 'Home',
'Url': '/group',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-01-25T13:20:28.867Z',
'Visible': true,
'Metadata': {}
},
{
'Id': 'tcm:307-71741-4',
'Title': 'Products',
'Url': '/group/products',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-114018-4',
'Title': 'Roller bearings',
'Url': '/group/products/roller-bearings',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-114019-4',
'Title': 'Ball bearings',
'Url': '/group/products/roller-bearings/ball-bearings',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-114021-4',
'Title': 'Deep groove ball bearings',
'Url': '/group/products/roller-bearings/ball-bearings/deep-groove-ball-bearings',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-114023-4',
'Title': 'Stainless Steel',
'Url': '/group/products/roller-bearings/ball-bearings/deep-groove-ball-bearings/stainless-steel',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454291-64',
'Title': 'Stainless steel',
'Url': '/group/products/roller-bearings/ball-bearings/deep-groove-ball-bearings/stainless-steel',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-01-24T17:36:20.313Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': '',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'No link'
}
},
{
'Id': 'tcm:307-114024-4',
'Title': 'Single row with filling slots',
'Url': '/group/products/roller-bearings/ball-bearings/deep-groove-ball-bearings/single-row-with-filling-slots',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454297-64',
'Title': 'Single row with filling slots',
'Url': '/group/products/roller-bearings/ball-bearings/deep-groove-ball-bearings/single-row-with-filling-slots/srwfs',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-11-29T12:08:08.750Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'No link'
}
},
{
'Id': 'tcm:307-114025-4',
'Title': 'Double row',
'Url': '/group/products/roller-bearings/ball-bearings/deep-groove-ball-bearings/double-row',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454290-64',
'Title': 'Double row',
'Url': '/group/products/roller-bearings/ball-bearings/deep-groove-ball-bearings/double-row',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-11-29T12:08:08.750Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'Industries',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'No link'
}
},
{
'Id': 'tcm:307-114026-4',
'Title': 'Fifth row',
'Url': '/group/products/roller-bearings/ball-bearings/deep-groove-ball-bearings/fifth-row',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-114107-4',
'Title': 'First row',
'Url': '/group/products/roller-bearings/ball-bearings/deep-groove-ball-bearings/fifth-row/first-row',
'Type': 'StructureGroup',
'Items': [],
'Visible': true,
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'No link'
}
},
{
'Id': 'tcm:307-454156-64',
'Title': 'Fifth row',
'Url': '/group/products/roller-bearings/ball-bearings/deep-groove-ball-bearings/fifth-row/fifthrow',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-11-29T12:08:08.737Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-114022-4',
'Title': '10 Single row',
'Url': '/group/products/roller-bearings/ball-bearings/deep-groove-ball-bearings/single-row',
'Type': 'StructureGroup',
'Items': [],
'Visible': false,
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'No link'
}
},
{
'Id': 'tcm:307-454157-64',
'Title': 'Deep groove ball bearings',
'Url': '/group/products/roller-bearings/ball-bearings/deep-groove-ball-bearings',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T13:23:08.617Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'Deep groove ball bearings',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
}
],
'Visible': true,
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-454158-64',
'Title': 'Roller bearings',
'Url': '/group/products/roller-bearings',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-12T15:23:59.483Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'Rolling bearings',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-114077-4',
'Title': 'Super-precision bearings',
'Url': '/group/products/super-precision-bearings',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-114078-4',
'Title': 'Principles of bearing selection and application',
'Url': '/group/products/super-precision-bearings/principles',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-114086-4',
'Title': 'General bearing knowledge',
'Url': '/group/products/super-precision-bearings/principles/general-bearing-knowledge',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-114088-4',
'Title': 'Bearing basics',
'Url': '/group/products/super-precision-bearings/principles/general-bearing-knowledge/bearing-basics',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454489-64',
'Title': 'Bearing basics',
'Url': '/group/products/super-precision-bearings/principles/general-bearing-knowledge/bearing-basics',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-13T16:33:20.877Z',
'Visible': true,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'Bearing basics',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-454488-64',
'Title': 'General bearing knowledge',
'Url': '/group/products/super-precision-bearings/principles/general-bearing-knowledge',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-13T16:29:44.760Z',
'Visible': true,
'Metadata': {}
},
{
'Id': 'tcm:307-114090-4',
'Title': 'Tolerances',
'Url': '/group/products/super-precision-bearings/principles/general-bearing-knowledge/tolerances',
'Type': 'StructureGroup',
'Items': [],
'Visible': true,
'Metadata': {}
},
{
'Id': 'tcm:307-114089-4',
'Title': 'Bearing storage',
'Url': '/group/products/super-precision-bearings/principles/general-bearing-knowledge/bearing-storage',
'Type': 'StructureGroup',
'Items': [],
'Visible': true,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'General bearing knowledge',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-114087-4',
'Title': 'Bearing selection process',
'Url': '/group/products/super-precision-bearings/principles/bearing-selection-process',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454677-64',
'Title': 'Bearing selection process',
'Url': '/group/products/super-precision-bearings/principles/bearing-selection-process',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-13T16:30:15.683Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': '',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-454487-64',
'Title': 'Principle of bearing selection & application',
'Url': '/group/products/super-precision-bearings/principles',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-13T16:11:44.107Z',
'Visible': true,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'Principle of bearing selection & application',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-114079-4',
'Title': 'Angular contact ball bearings',
'Url': '/group/products/super-precision-bearings/angular-contact-ball-bearings',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454683-64',
'Title': 'Angular connect',
'Url': '/group/products/super-precision-bearings/angular-contact-ball-bearings',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-13T16:28:49.243Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'Angulra contact title?',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-454363-64',
'Title': 'Super Precision Bearings',
'Url': '/group/products/super-precision-bearings',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-13T16:11:13.870Z',
'Visible': true,
'Metadata': {}
},
{
'Id': 'tcm:307-114080-4',
'Title': 'Cylindrical roller bearings',
'Url': '/group/products/super-precision-bearings/cylindrical-roller-bearings',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454684-64',
'Title': 'Cylindrical roller bearings',
'Url': '/group/products/super-precision-bearings/cylindrical-roller-bearings',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-07T15:54:59.963Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': '',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-114081-4',
'Title': 'Double direction angular contact thrust ball bearings',
'Url': '/group/products/super-precision-bearings/double-direction-acthbb',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454685-64',
'Title': 'Double direction angular contact',
'Url': '/group/products/super-precision-bearings/double-direction-acthbb',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-13T16:27:43.637Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': '',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-114082-4',
'Title': 'Axial-radial cylindrical roller bearings',
'Url': '/group/products/super-precision-bearings/axial-radial-crb',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454686-64',
'Title': 'Axial-radial cylindrical',
'Url': '/group/products/super-precision-bearings/axial-radial-crb',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-13T16:27:28.637Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': '',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-114083-4',
'Title': 'Angular contact thrust ball bearings for screw drives',
'Url': '/group/products/super-precision-bearings/angular-contact-thrust-ball-bearings-for-screw-drives',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454687-64',
'Title': 'Angular contact thrust ball bearings',
'Url': '/group/products/super-precision-bearings/angular-contact-thrust-ball-bearings-for-screw-drives',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-13T16:27:08.277Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': '',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-114084-4',
'Title': 'Precision lock nuts',
'Url': '/group/products/super-precision-bearings/precision-lock-nuts',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454688-64',
'Title': 'Precision lock nuts',
'Url': '/group/products/super-precision-bearings/precision-lock-nuts',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-13T16:26:22.307Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': '',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-114085-4',
'Title': 'Gauges',
'Url': '/group/products/super-precision-bearings/gauges',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454689-64',
'Title': 'Gauges',
'Url': '/group/products/super-precision-bearings/gauges',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-13T16:25:56.743Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': '',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
}
],
'Visible': true,
'TitleOverride': 'Super Precision Bearings',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'No link'
}
},
{
'Id': 'tcm:307-114117-4',
'Title': 'Plain bearings',
'Url': '/group/products/plain-bearings',
'Type': 'StructureGroup',
'Items': [],
'Visible': true,
'Metadata': {}
},
{
'Id': 'tcm:307-114118-4',
'Title': 'Slewing bearings',
'Url': '/group/products/slewing-bearings',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454599-64',
'Title': 'sprintdemo_four',
'Url': '/group/products/slewing-bearings',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-26T10:06:00.557Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'Wind turbine',
'ShowBreadcrumbs': 'Yes',
'Metadata': {}
},
{
'Id': 'tcm:307-114119-4',
'Title': 'Bearing units & bearing housings',
'Url': '/group/products/bearing-units-housings',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454552-64',
'Title': 'Product Spec Main',
'Url': '/group/products/bearing-units-housings/productSpecMain',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-12T19:17:07.480Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454592-64',
'Title': 'Product Spec Main_three',
'Url': '/group/products/bearing-units-housings/productSpecMain_three',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T13:23:08.633Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454591-64',
'Title': 'Product Spec Main_two',
'Url': '/group/products/bearing-units-housings/productSpecMain_two',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T13:23:08.633Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'Metadata': {}
},
{
'Id': 'tcm:307-114120-4',
'Title': 'Industrial seals',
'Url': '/group/products/industrial-seals',
'Type': 'StructureGroup',
'Items': [],
'Visible': true,
'Metadata': {}
},
{
'Id': 'tcm:307-114121-4',
'Title': 'Automotive seals',
'Url': '/group/products/automotive-seals',
'Type': 'StructureGroup',
'Items': [],
'Visible': true,
'Metadata': {}
},
{
'Id': 'tcm:307-114110-4',
'Title': 'Lubrication solutions',
'Url': '/group/products/lubrication-solutions',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-114114-4',
'Title': 'Lubricant',
'Url': '/group/products/lubrication-solutions/lubricant',
'Type': 'StructureGroup',
'Items': [],
'Visible': true,
'Metadata': {}
},
{
'Id': 'tcm:307-114115-4',
'Title': 'Manual lubrication tools',
'Url': '/group/products/lubrication-solutions/manual-lubrication-tools',
'Type': 'StructureGroup',
'Items': [],
'Visible': true,
'Metadata': {}
},
{
'Id': 'tcm:307-114116-4',
'Title': 'Lubrication Management tools',
'Url': '/group/products/lubrication-solutions/management-tools',
'Type': 'StructureGroup',
'Items': [],
'Visible': true,
'Metadata': {}
},
{
'Id': 'tcm:307-114122-4',
'Title': 'Lubrication system components',
'Url': '/group/products/lubrication-solutions/system-components',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-114124-4',
'Title': 'Supply units',
'Url': '/group/products/lubrication-solutions/system-components/supply-units',
'Type': 'StructureGroup',
'Items': [],
'Visible': true,
'Metadata': {}
},
{
'Id': 'tcm:307-114123-4',
'Title': 'Lubrication pumps and pump units',
'Url': '/group/products/lubrication-solutions/system-components/pumps-and-pump-units',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454324-64',
'Title': 'Lubrication pumps',
'Url': '/group/products/lubrication-solutions/system-components/pumps-and-pump-units',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:46:58.880Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'Electrically driven lubricator! ',
'ShowBreadcrumbs': 'Yes',
'Metadata': {}
}
],
'Visible': true,
'Metadata': {}
},
{
'Id': 'tcm:307-454715-64',
'Title': 'Lubrication solutions',
'Url': '/group/products/lubrication-solutions',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-13T18:09:47.897Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'Electrically driven lubricator! ',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-114146-4',
'Title': 'Maintenance products',
'Url': '/group/products/maintenance-products',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-114147-4',
'Title': 'Hydraulic tools for mounting and dismounting',
'Url': '/group/products/maintenance-products/hydraulic-tools-for-mounting-and-dismounting',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-114149-4',
'Title': 'Hydraulic pumps and oil injectors',
'Url': '/group/products/maintenance-products/hydraulic-tools-for-mounting-and-dismounting/hydraulic-pumps-and-oil-injectors',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454584-64',
'Title': 'Hydraulic pumps and oil injectors',
'Url': '/group/products/maintenance-products/hydraulic-tools-for-mounting-and-dismounting/hydraulic-pumps-and-oil-injectors',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-11T14:12:19.607Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': '',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-454581-64',
'Title': 'Hydraulic tools for mounting and dismounting',
'Url': '/group/products/maintenance-products/hydraulic-tools-for-mounting-and-dismounting',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-11T14:04:08.920Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': '',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'No link'
}
},
{
'Id': 'tcm:307-114148-4',
'Title': 'Mechanical tools for mounting and dismounting',
'Url': '/group/products/maintenance-products/mechanical-tools-for-mounting-and-dismounting',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454582-64',
'Title': 'Mechanical tools for mounting and dismounting',
'Url': '/group/products/maintenance-products/mechanical-tools-for-mounting-and-dismounting',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-11T14:06:23.483Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': '',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'No link'
}
},
{
'Id': 'tcm:307-454580-64',
'Title': 'Maintenance Products',
'Url': '/group/products/maintenance-products',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-11T13:55:28.387Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': '',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-454351-64',
'Title': 'Products',
'Url': '/group/products',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-14T10:04:51.640Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'Products',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'topMenuFoldOutOrLink': 'Fold out menu',
'topMenuIsAlink': ''
}
},
{
'Id': 'tcm:307-114098-4',
'Title': 'Industries',
'Url': '/group/industries',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454284-64',
'Title': 'Industries',
'Url': '/group/industries',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-12T18:23:00.583Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'Industries',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'topMenuFoldOutOrLink': 'Fold out menu',
'topMenuIsAlink': ''
}
},
{
'Id': 'tcm:307-71743-4',
'Title': 'Services',
'Url': '/group/Services',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454295-64',
'Title': 'Services',
'Url': '/group/Services',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T13:23:08.617Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'Services',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'topMenuFoldOutOrLink': 'Fold out menu',
'topMenuIsAlink': ''
}
},
{
'Id': 'tcm:307-114099-4',
'Title': 'Support',
'Url': '/group/support',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454296-64',
'Title': 'Support',
'Url': '/group/support',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T13:23:08.617Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'Support',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'topMenuFoldOutOrLink': 'Link',
'topMenuIsAlink': ''
}
},
{
'Id': 'tcm:307-114060-4',
'Title': 'Training',
'Url': '/group/training',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-114105-4',
'Title': 'NavigationTest',
'Url': '/group/training/navigationTest',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454280-64',
'Title': 'index for navigation test',
'Url': '/group/training/navigationTest',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-11-29T12:14:59.180Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'this is the menu title',
'ShowBreadcrumbs': 'No',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-454298-64',
'Title': 'Training',
'Url': '/group/training',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-13T16:42:22.167Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'Training',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'topMenuFoldOutOrLink': 'Link',
'topMenuIsAlink': '/group/training'
}
},
{
'Id': 'tcm:307-114112-4',
'Title': 'no test',
'Url': '/group/test',
'Type': 'StructureGroup',
'Items': [],
'Visible': true,
'Metadata': {}
},
{
'Id': 'tcm:307-454136-64',
'Title': 'DXA',
'Url': '/group/dxa',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-11-29T12:15:01.913Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-114108-4',
'Title': 'System Pages SKF',
'Url': '/group/system-pages',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454299-64',
'Title': 'Labels',
'Url': '/group/system-pages/labels',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-19T11:13:11.410Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-114007-4',
'Title': 'Testing',
'Url': '/group/testing',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-114104-4',
'Title': 'Ranjan',
'Url': '/group/testing/ranjan',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454674-64',
'Title': 'Component link test',
'Url': '/group/testing/ranjan/componentLink',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-06T14:33:11.153Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454567-64',
'Title': 'componentLinkTest',
'Url': '/group/testing/ranjan/componentLinkTest',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-25T16:31:13.383Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454714-64',
'Title': 'HierarchyCardsTest',
'Url': '/group/testing/ranjan/hierarchyCardsTest',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-11T10:11:16.827Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454333-64',
'Title': 'Highlighted content page',
'Url': '/group/testing/ranjan/highlightedContent',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-04T13:25:46.077Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454502-64',
'Title': 'imageTest R32-548',
'Url': '/group/testing/ranjan/imageTest',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-25T16:31:13.370Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454279-64',
'Title': 'index',
'Url': '/group/testing/ranjan',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-04T13:52:17.580Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454519-64',
'Title': 'modalImage',
'Url': '/group/testing/ranjan/modalImage',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-05T11:09:51.293Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454450-64',
'Title': 'News item test',
'Url': '/group/testing/ranjan/newsItemTest',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-01-16T15:17:46.360Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454382-64',
'Title': 'Shortcuts test',
'Url': '/group/testing/ranjan/shortcutsTest',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T13:23:08.617Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454424-64',
'Title': 'Shortcuts test2',
'Url': '/group/testing/ranjan/shortcutsTest2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T13:23:08.633Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454604-64',
'Title': 'Slider test',
'Url': '/group/testing/ranjan/sliderTest',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-26T10:06:00.557Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454278-64',
'Title': 'Support page',
'Url': '/group/testing/ranjan/supportPageRanjan',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-26T10:06:00.527Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454361-64',
'Title': 'table',
'Url': '/group/testing/ranjan/table',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-04T13:04:40.433Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454423-64',
'Title': 'Top banner test',
'Url': '/group/testing/ranjan/topBannerTest',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-04T13:29:56.740Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'Wind turbine',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-114130-4',
'Title': 'th',
'Url': '/group/testing/th',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454553-64',
'Title': 'Tommys Super Page',
'Url': '/group/testing/th',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-12T11:29:19.787Z',
'Visible': true,
'Metadata': {}
},
{
'Id': 'tcm:307-454610-64',
'Title': 'Slider',
'Url': '/group/testing/th/slider',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-05T09:09:32.530Z',
'Visible': true,
'Metadata': {}
},
{
'Id': 'tcm:307-454454-64',
'Title': 'Content Card',
'Url': '/group/testing/th/content-card',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-26T10:06:00.540Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454578-64',
'Title': 'Content Card Split',
'Url': '/group/testing/th/content-card-split',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-26T10:06:00.540Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': true,
'TitleOverride': 'Tommys Super Page',
'ShowBreadcrumbs': 'Yes',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
},
{
'Id': 'tcm:307-114138-4',
'Title': 'adrian',
'Url': '/group/testing/adrian',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454574-64',
'Title': 'BodyTextExpandable',
'Url': '/group/testing/adrian/bodyTextExpandable',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-22T13:41:03.450Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454563-64',
'Title': 'catalogueTableTest',
'Url': '/group/testing/adrian/catalogueTableTest',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-01-31T17:42:12.267Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454586-64',
'Title': 'expandableSupport',
'Url': '/group/testing/adrian/expandableSupport',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-22T13:41:03.450Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454595-64',
'Title': 'ImageSliderTest',
'Url': '/group/testing/adrian/imageSliderTest',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-26T10:06:00.557Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454525-64',
'Title': 'Product Spec Main',
'Url': '/group/testing/adrian/productSpecMain',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-07T15:10:42.227Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454431-64',
'Title': 'adrianTopBanner',
'Url': '/group/testing/adrianTopBanner',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:46:58.880Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454308-64',
'Title': 'axelProductInfoPage',
'Url': '/group/testing/axelproductinfo',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-26T10:06:00.527Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454310-64',
'Title': 'axelProductInfoPage2',
'Url': '/group/testing/axelproductinfo2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T13:23:08.617Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454313-64',
'Title': 'axelProductInfoPagenormal',
'Url': '/group/testing/axelproductinfonormal',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-26T10:06:00.527Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454306-64',
'Title': 'axel-related-info',
'Url': '/group/testing/axelRelatedInfo',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:46:58.880Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454166-64',
'Title': 'AxelTestPage',
'Url': '/group/testing',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-05T11:20:17.123Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454173-64',
'Title': 'AxelTestPage2',
'Url': '/group/testing/AxelTestPage2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:46:58.880Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454598-64',
'Title': 'axel-types',
'Url': '/group/testing/types',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-19T10:21:04.617Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454264-64',
'Title': 'bla',
'Url': '/group/testing/bla',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T13:41:06.417Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454265-64',
'Title': 'bla2',
'Url': '/group/testing/bla2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-13T11:24:22.213Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454359-64',
'Title': 'blue-table',
'Url': '/group/testing/blueTable',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-08T11:16:12.247Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454374-64',
'Title': 'Body text - R32_419_1',
'Url': '/group/testing/r32_419_1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-11T12:59:10.337Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454379-64',
'Title': 'Body text - R32_419_2',
'Url': '/group/testing/r32_419_2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-11T12:59:17.103Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454384-64',
'Title': 'Body text - R32_419_3',
'Url': '/group/testing/r32_419_3',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-11T12:59:15.977Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454386-64',
'Title': 'Body text - R32_419_4',
'Url': '/group/testing/r32_419_4',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-26T10:06:00.527Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454127-64',
'Title': 'Body Text with all 3 templates + page details!',
'Url': '/group/testing/bodyTextAll',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T13:23:08.617Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454155-64',
'Title': 'Copy 2 of Body Text with all 3 templates + page details!',
'Url': '/group/testing/bodyTextAll_Juha',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T13:23:08.617Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454139-64',
'Title': 'Copy of Body Text with all 3 templates + page details!',
'Url': '/group/testing/Copy_of_bodyTextAll',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-26T10:06:00.527Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454269-64',
'Title': 'Copy of Copy of pageForDemo',
'Url': '/group/testing/Copy_of_Copy_of_pageForDemo',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-11-15T10:11:12.393Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454267-64',
'Title': 'Copy of pageForDemo',
'Url': '/group/testing/Copy_of_pageForDemo',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-11-15T10:10:40.470Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454262-64',
'Title': 'Copy of Related Info - r32_300_1',
'Url': '/group/testing/r32_300_1_juha',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:46:58.880Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454493-64',
'Title': 'Copy of Test Tridion Page',
'Url': '/group/testing/Copy_of_Test1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-01-16T14:31:32.590Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454268-64',
'Title': 'demoTop',
'Url': '/group/testing/demoTop',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-11-15T10:11:18.783Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454113-64',
'Title': 'DXA1',
'Url': '/group/testing/dxapage1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-09-28T06:32:11.423Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454625-64',
'Title': 'example2',
'Url': '/group/testing/example2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-27T15:57:53.733Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454621-64',
'Title': 'examplepage',
'Url': '/group/testing/example',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-26T13:41:51.353Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454140-64',
'Title': 'Generic content page',
'Url': '/group/testing/genericContentPage',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-26T10:06:00.527Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454336-64',
'Title': 'Highlighted content - R32_342_1',
'Url': '/group/testing/r32_342_1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-12T09:28:58.053Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454356-64',
'Title': 'Highlighted content - R32_342_2',
'Url': '/group/testing/r32_342_2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:46:58.880Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454429-64',
'Title': 'Highlighted content - R32_342_3',
'Url': '/group/testing/r32_342_3',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:46:58.880Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454430-64',
'Title': 'Highlighted content - R32_342_4',
'Url': '/group/testing/r32_342_4',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:46:58.880Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454344-64',
'Title': 'Highlighted content all colors',
'Url': '/group/testing/allColors',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-05T14:16:37.357Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454334-64',
'Title': 'Highlighted content page',
'Url': '/group/testing/highlightedContent',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-26T10:06:00.527Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-114151-4',
'Title': 'jonas',
'Url': '/group/testing/jonas',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454725-64',
'Title': 'Product Info',
'Url': '/group/testing/jonas/productinfo',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-12T14:27:07.973Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454237-64',
'Title': 'New Related Info page',
'Url': '/group/testing/newrelatedInfo',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:46:58.880Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454418-64',
'Title': 'New Search Page',
'Url': '/group/testing/searchpage',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-12-21T15:16:19.027Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454467-64',
'Title': 'NewsItemsTest',
'Url': '/group/testing/newsItemsTest',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-26T10:06:00.540Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454394-64',
'Title': 'no-color table',
'Url': '/group/testing/no-color-table',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-12-18T10:57:53.987Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454149-64',
'Title': 'Page details - R32-252-1',
'Url': '/group/testing/r32_252_1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-11-15T10:11:30.457Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454150-64',
'Title': 'Page details - R32-252-2',
'Url': '/group/testing/r32_252_2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-11-15T10:11:38.957Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454266-64',
'Title': 'pageForDemo',
'Url': '/group/testing/pageForDemo',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-11-15T10:11:37.880Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454390-64',
'Title': 'Product info - r32_113_2',
'Url': '/group/testing/r32_113_2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-12T08:31:12.650Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454392-64',
'Title': 'Product info - r32_113_3',
'Url': '/group/testing/r32_113_3',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:46:58.880Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454293-64',
'Title': 'Product info- r32_113_1',
'Url': '/group/testing/r32_113_1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-01-29T13:00:03.610Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454286-64',
'Title': 'Product info test',
'Url': '/group/testing/productInfo',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-04T13:39:57.640Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454172-64',
'Title': 'R32-176 Test',
'Url': '/group/testing/R32-176-Test',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-11T16:25:42.920Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454151-64',
'Title': 'R32-226',
'Url': '/group/testing/r32_226',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-11-15T10:11:44.300Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454152-64',
'Title': 'R32-226-2',
'Url': '/group/testing/r32_226_2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-11-15T10:11:55.690Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454153-64',
'Title': 'R32-229-1',
'Url': '/group/testing/r32_229_1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-11-15T10:11:55.737Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454154-64',
'Title': 'R32-229-2',
'Url': '/group/testing/r32_229_2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-11-15T10:12:02.003Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454146-64',
'Title': 'R32-254',
'Url': '/group/testing/r32_254',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-01T14:51:13.060Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454162-64',
'Title': 'R32-276-1',
'Url': '/group/testing/R32_276_1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-01T14:52:08.433Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454163-64',
'Title': 'R32-276-2',
'Url': '/group/testing/R32_276_2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-01T14:52:19.387Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454164-64',
'Title': 'R32-276-3',
'Url': '/group/testing/R32_276_3',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-01T14:52:24.700Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454465-64',
'Title': 'r32-531',
'Url': '/group/testing/r32_531',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:35:00.663Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454133-64',
'Title': 'ranjanAxelContentWTopArea',
'Url': '/group/testing/ranjanAxelContentWTopArea',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-11-15T10:12:13.597Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-114129-4',
'Title': 'Regression test',
'Url': '/group/testing/reg_test',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454466-64',
'Title': 'Body text 1',
'Url': '/group/testing/reg_test/bodytext_1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-12T18:23:45.567Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454468-64',
'Title': 'Body text 2',
'Url': '/group/testing/reg_test/bodytext_2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-12T13:24:07.890Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454469-64',
'Title': 'Body text 3',
'Url': '/group/testing/reg_test/bodytext_3',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-12T13:24:07.890Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454577-64',
'Title': 'Body text expandable - r32_116_1',
'Url': '/group/testing/reg_test/r32_116_1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-27T12:24:27.640Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454499-64',
'Title': 'Highlighted Content 1',
'Url': '/group/testing/reg_test/hc1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:35:00.663Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454473-64',
'Title': 'News item - R32_38',
'Url': '/group/testing/reg_test/r32_38',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:43:57.937Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454548-64',
'Title': 'Product spec - r32-359-1',
'Url': '/group/testing/reg_test/r32_359_1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-26T10:15:01.647Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454608-64',
'Title': 'Slider - r32-18',
'Url': '/group/testing/reg_test/slider1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T07:32:52.707Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454634-64',
'Title': 'Slider2 - r32_699',
'Url': '/group/testing/reg_test/slider2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-05T07:54:15.600Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454509-64',
'Title': 'Top Banner - r32 97-1',
'Url': '/group/testing/reg_test/r32_97_1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:35:00.663Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454510-64',
'Title': 'Top Banner - r32 97-2',
'Url': '/group/testing/reg_test/r32_97_2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:35:00.663Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454515-64',
'Title': 'Top Banner - r32 97-3',
'Url': '/group/testing/reg_test/r32_97_3',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-27T12:24:27.640Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454516-64',
'Title': 'Top Banner - r32 97-4',
'Url': '/group/testing/reg_test/r32_97_4',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-27T12:24:27.640Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454517-64',
'Title': 'Top Banner - r32 97-5',
'Url': '/group/testing/reg_test/r32_97_5',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:35:00.663Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454244-64',
'Title': 'Related Info - r32_300_1',
'Url': '/group/testing/r32_300_1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-12T07:18:21.717Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454277-64',
'Title': 'Related Info - r32_300_1 (kunal)',
'Url': '/group/testing/r32_300_1_kunal',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:46:58.880Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454245-64',
'Title': 'Related Info - r32_300_2',
'Url': '/group/testing/r32_300_2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-12T07:18:37.700Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454220-64',
'Title': 'Related Info page',
'Url': '/group/testing/relatedInfo',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-07T14:38:45.240Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454222-64',
'Title': 'Related links - r32_297_1',
'Url': '/group/testing/r32_297_1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-12T09:59:00.787Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454223-64',
'Title': 'Related links - r32_297_2',
'Url': '/group/testing/r32_297_2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-12T07:01:40.143Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454366-64',
'Title': 'richTextPage',
'Url': '/group/testing/richtext',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-12-11T10:34:51.853Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-114134-4',
'Title': 'Saurabh',
'Url': '/group/testing/saurabh',
'Type': 'StructureGroup',
'Items': [
{
'Id': 'tcm:307-454464-64',
'Title': 'imageTest R32-548',
'Url': '/group/testing/saurabh/imageTest',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-05T13:54:36.353Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454551-64',
'Title': 'Product info testing',
'Url': '/group/testing/saurabh/productinfo',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-12T11:51:35.730Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454435-64',
'Title': 'Search component - R32_484_1',
'Url': '/group/testing/r32_484_1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-01-07T20:34:45.783Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454436-64',
'Title': 'Search component - R32_484_2',
'Url': '/group/testing/r32_484_2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-01-07T20:38:46.867Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454437-64',
'Title': 'Search component - R32_484_3',
'Url': '/group/testing/r32_484_3',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-01-07T20:38:46.913Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454428-64',
'Title': 'searchTest',
'Url': '/group/testing/searchTest',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-13T14:52:57.210Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454388-64',
'Title': 'Shortcuts - R32_15_1',
'Url': '/group/testing/r32_15_1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:35:00.663Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454395-64',
'Title': 'sprintdemo',
'Url': '/group/testing/sprintdemo',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:46:58.880Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454636-64',
'Title': 'SprintDemo 14',
'Url': '/group/testing/sprintdemo14',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-08T11:54:47.127Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454670-64',
'Title': 'sprint-demo14-2',
'Url': '/group/testing/sprintdemo14-2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-05T14:51:43.787Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454441-64',
'Title': 'sprintdemo-2',
'Url': '/group/testing/sprintdemo2',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-08T13:09:46.140Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454444-64',
'Title': 'sprintdemo-3',
'Url': '/group/testing/sprintdemo3',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-08T10:36:21.423Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454141-64',
'Title': 'Support page',
'Url': '/group/testing/supportPage',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-26T10:06:00.527Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454271-64',
'Title': 't',
'Url': '/group/testing/t',
'Type': 'Page',
'Items': [],
'PublishedDate': '2018-11-15T10:12:35.350Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454627-64',
'Title': 'team1andteam2',
'Url': '/group/testing/team',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-02-27T15:35:00.733Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454426-64',
'Title': 'Top banner - r32_97_1',
'Url': '/group/testing/r32_97_1',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T11:46:58.880Z',
'Visible': false,
'Metadata': {}
},
{
'Id': 'tcm:307-454409-64',
'Title': 'Top banner test',
'Url': '/group/testing/topBannerTest',
'Type': 'Page',
'Items': [],
'PublishedDate': '2019-03-01T13:23:08.633Z',
'Visible': false,
'Metadata': {}
}
],
'Visible': false,
'TitleOverride': 'this is the menu title',
'ShowBreadcrumbs': 'No',
'Metadata': {
'inclPageInHierarchyCards': 'Yes',
'behaviourMegaMenuItem': 'Clickable link'
}
}
],
'Visible': false,
'TitleOverride': 'Home',
'ShowBreadcrumbs': 'Yes',
'Metadata': {}
}
}
}