{
    "manifestVersion": "2.0",
    "routes": [
        {
            "type": "section",
            "nav": {
                "label": "i18n:fc.stores.nav",
                "icon": "domain"
            },
            "pages": [
                {
                    "path": "locations",
                    "type": "page",
                    "component": "fc.page",
                    "nav": {
                        "label": "i18n:fc.stores.allLocations.index.nav",
                        "icon": "place"
                    },
                    "data": {
                        "query": "query locations($locations_first: Int) {\n  locations(first: $locations_first) {\n    edges {\n      node {\n        id\n        name\n        ref\n        type\n        status\n        primaryAddress {\n          latitude\n          longitude\n          id\n          state\n          city\n          street\n        }\n      }\n    }\n  }\n}\n",
                        "variables": {
                            "locations_first": 100
                        }
                    },
                    "props": {
                        "title": "i18n:fc.stores.allLocations.index.title",
                        "actions": {
                            "primary": [
                                {
                                    "type": "mutation",
                                    "label": "i18n:fc.gi.stores.index.userAction.createLocation",
                                    "name": "createLocation",
                                    "overrides": {
                                        "type": {
                                            "component": "input",
                                            "options": [
                                                {
                                                    "label": "STORE",
                                                    "value": "STORE"
                                                },
                                                {
                                                    "label": "WAREHOUSE",
                                                    "value": "WAREHOUSE"
                                                }
                                            ]
                                        },
                                        "openingSchedule": {
                                            "defaultValue": {
                                                "allHours": false,
                                                "monStart": 0,
                                                "monEnd": 0,
                                                "tueStart": 0,
                                                "tueEnd": 0,
                                                "wedStart": 0,
                                                "wedEnd": 0,
                                                "thuStart": 0,
                                                "thuEnd": 0,
                                                "friStart": 0,
                                                "friEnd": 0,
                                                "satStart": 0,
                                                "satEnd": 0,
                                                "sunStart": 0,
                                                "sunEnd": 0
                                            },
                                            "allHours": {
                                                "sortPrefix": 1
                                            },
                                            "monStart": {
                                                "sortPrefix": 2
                                            },
                                            "monEnd": {
                                                "sortPrefix": 3
                                            },
                                            "tueStart": {
                                                "sortPrefix": 4
                                            },
                                            "tueEnd": {
                                                "sortPrefix": 5
                                            },
                                            "wedStart": {
                                                "sortPrefix": 6
                                            },
                                            "wedEnd": {
                                                "sortPrefix": 7
                                            },
                                            "thuStart": {
                                                "sortPrefix": 8
                                            },
                                            "thuEnd": {
                                                "sortPrefix": 9
                                            },
                                            "friStart": {
                                                "sortPrefix": 10
                                            },
                                            "friEnd": {
                                                "sortPrefix": 11
                                            },
                                            "satStart": {
                                                "sortPrefix": 12
                                            },
                                            "satEnd": {
                                                "sortPrefix": 13
                                            },
                                            "sunStart": {
                                                "sortPrefix": 14
                                            },
                                            "sunEnd": {
                                                "sortPrefix": 15
                                            }
                                        }
                                    }
                                }
                            ]
                        }
                    },
                    "descendants": [
                        {
                            "component": "fc.list",
                            "props": {
                                "dataSource": "locations",
                                "responsiveness": "card",
                                "filter": {
                                    "enabled": true,
                                    "exclude": [
                                        "status",
                                        "type",
                                        "defaultCarrier",
                                        "defaultCarrierName",
                                        "supportPhoneNumber"
                                    ]
                                },
                                "attributes": [
                                    {
                                        "label": "i18n:fc.stores.allLocations.index.list.column.locationRef.heading",
                                        "template": "{{node.ref}}",
                                        "link_template": "#/location/{{node.id}}",
                                        "condition": "{{and node.id}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.index.list.column.locationName.heading",
                                        "template": "{{node.name}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.index.list.column.city.heading",
                                        "template": "{{node.primaryAddress.city}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.index.list.column.state.heading",
                                        "template": "{{node.primaryAddress.state}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.index.list.column.status.heading",
                                        "template": "{{humanify node.status}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.index.list.column.type.heading",
                                        "template": "{{node.type}}"
                                    }
                                ]
                            }
                        }
                    ]
                },
                {
                    "path": "location/:location_id",
                    "type": "page",
                    "component": "fc.page",
                    "data": {
                        "query": "query locations($id: ID!, $contextId: [Int!], $networks_first: Int, $storageAreas_first: Int) {\n  locationById(id: $id) {\n    id\n    name\n    ref\n    type\n    status\n    supportPhoneNumber\n    primaryAddress {\n      id\n      latitude\n      longitude\n      state\n      city\n      street\n      postcode\n      country\n      timeZone\n    }\n    openingSchedule {\n      allHours\n      monEnd\n      monStart\n      tueEnd\n      tueStart\n      wedEnd\n      wedStart\n      thuEnd\n      thuStart\n      friEnd\n      friStart\n      satEnd\n      satStart\n      sunEnd\n      sunStart\n    }\n    networks(first: $networks_first) {\n      edges {\n        node {\n          id\n          ref\n          type\n          status\n        }\n      }\n    }\n    storageAreas(first: $storageAreas_first) {\n      edges {\n        node {\n          id\n          name\n          status\n          type\n        }\n      }\n    }\n  }\n  settings(\n    name: \"PICK_N_PACK_TIME_LIMIT\"\n    context: \"AGENT\"\n    contextId: $contextId\n  ) {\n    edges {\n      node {\n        id\n        name\n        valueType\n        value\n        contextId\n      }\n    }\n  }\n}\n",
                        "variables": {
                            "id": "{{params.location_id}}",
                            "contextId": "{{params.location_id}}",
                            "storageAreas_first": 100,
                            "networks_first": 100
                        }
                    },
                    "props": {
                        "title": "{{i18n 'fc.stores.allLocations.title'}} {{locationById.ref}}",
                        "backButtons": [
                            {
                                "path": "locations",
                                "menuLabel": "i18n:fc.stores.allLocations.detail.breadcrumb.backToAllLocations"
                            }
                        ],
                        "actions": {
                            "primary": [
                                {
                                    "type": "mutation",
                                    "label": "i18n:fc.sf.locations.detail.userAction.edit",
                                    "name": "updateLocation",
                                    "args": {
                                        "id": "{{locationById.id}}"
                                    },
                                    "overrides": {
                                        "type": {
                                            "component": "input",
                                            "options": [
                                                {
                                                    "label": "STORE",
                                                    "value": "STORE"
                                                },
                                                {
                                                    "label": "WAREHOUSE",
                                                    "value": "WAREHOUSE"
                                                }
                                            ]
                                        },
                                        "openingSchedule": {
                                            "allHours": {
                                                "sortPrefix": 1
                                            },
                                            "monStart": {
                                                "sortPrefix": 2
                                            },
                                            "monEnd": {
                                                "sortPrefix": 3
                                            },
                                            "tueStart": {
                                                "sortPrefix": 4
                                            },
                                            "tueEnd": {
                                                "sortPrefix": 5
                                            },
                                            "wedStart": {
                                                "sortPrefix": 6
                                            },
                                            "wedEnd": {
                                                "sortPrefix": 7
                                            },
                                            "thuStart": {
                                                "sortPrefix": 8
                                            },
                                            "thuEnd": {
                                                "sortPrefix": 9
                                            },
                                            "friStart": {
                                                "sortPrefix": 10
                                            },
                                            "friEnd": {
                                                "sortPrefix": 11
                                            },
                                            "satStart": {
                                                "sortPrefix": 12
                                            },
                                            "satEnd": {
                                                "sortPrefix": 13
                                            },
                                            "sunStart": {
                                                "sortPrefix": 14
                                            },
                                            "sunEnd": {
                                                "sortPrefix": 15
                                            },
                                            "id": {
                                                "sortPrefix": 16
                                            }
                                        }
                                    }
                                }
                            ]
                        }
                    },
                    "descendants": [
                        {
                            "component": "fc.card.attribute",
                            "props": {
                                "title": "i18n:fc.stores.allLocations.detail.card.details.title",
                                "width": "half",
                                "dataSource": "locationById",
                                "attributes": [
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.details.attribute.locationRef.label",
                                        "template": "{{ref}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.details.attribute.name.label",
                                        "template": "{{name}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.details.attribute.phone.label",
                                        "template": "{{supportPhoneNumber}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.details.attribute.address.label",
                                        "template": "{{primaryAddress.street}}"
                                    },
                                    {
                                        "label": "",
                                        "template": "{{primaryAddress.city}}"
                                    },
                                    {
                                        "label": "",
                                        "template": "{{primaryAddress.state}}"
                                    },
                                    {
                                        "label": "",
                                        "template": "{{primaryAddress.postcode}}"
                                    },
                                    {
                                        "label": "",
                                        "template": "{{primaryAddress.country}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.details.attribute.latitude.label",
                                        "template": "{{primaryAddress.latitude}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.details.attribute.longitude.label",
                                        "template": "{{primaryAddress.longitude}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.details.attribute.timezone.label",
                                        "template": "{{primaryAddress.timeZone}}"
                                    }
                                ]
                            }
                        },
                        {
                            "component": "fc.card.map.point",
                            "dataSource": "locationById",
                            "props": {
                                "width": "6"
                            }
                        },
                        {
                            "component": "fc.card.attribute",
                            "props": {
                                "title": "i18n:fc.stores.allLocations.detail.card.features.title",
                                "width": "half",
                                "attributes": [
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.features.attribute.type.label",
                                        "template": "{{locationById.type}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.features.attribute.status.label",
                                        "template": "{{locationById.status}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.features.attribute.pickAndPackTimeLimit.label",
                                        "template": "{{settings.edges.0.node.value}} Hours"
                                    }
                                ]
                            }
                        },
                        {
                            "component": "fc.card.attribute",
                            "props": {
                                "title": "i18n:fc.stores.allLocations.detail.card.openingHours.title",
                                "width": "half",
                                "dataSource": "locationById",
                                "attributes": [
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.openingHours.attribute.open24Hours?.label",
                                        "template": "{{openingSchedule.allHours}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.openingHours.attribute.monday.label",
                                        "template": "{{openingSchedule.monStart}}  {{i18n 'fc.stores.allLocations.detail.card.openingHours.to'}} {{openingSchedule.monEnd}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.openingHours.attribute.tuesday.label",
                                        "template": "{{openingSchedule.tueStart}}  {{i18n 'fc.stores.allLocations.detail.card.openingHours.to'}} {{openingSchedule.tueEnd}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.openingHours.attribute.wednesday.label",
                                        "template": "{{openingSchedule.wedStart}}  {{i18n 'fc.stores.allLocations.detail.card.openingHours.to'}} {{openingSchedule.wedEnd}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.openingHours.attribute.thursday.label",
                                        "template": "{{openingSchedule.thuStart}}  {{i18n 'fc.stores.allLocations.detail.card.openingHours.to'}} {{openingSchedule.thuEnd}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.openingHours.attribute.friday.label",
                                        "template": "{{openingSchedule.friStart}}  {{i18n 'fc.stores.allLocations.detail.card.openingHours.to'}} {{openingSchedule.friEnd}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.openingHours.attribute.saturday.label",
                                        "template": "{{openingSchedule.satStart}}  {{i18n 'fc.stores.allLocations.detail.card.openingHours.to'}} {{openingSchedule.satEnd}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.card.openingHours.attribute.sunday.label",
                                        "template": "{{openingSchedule.sunStart}}  {{i18n 'fc.stores.allLocations.detail.card.openingHours.to'}} {{openingSchedule.sunEnd}}"
                                    }
                                ]
                            }
                        },
                        {
                            "component": "fc.list",
                            "props": {
                                "title": "i18n:fc.stores.allLocations.detail.list.networks.title",
                                "dataSource": "locationById.networks",
                                "responsiveness": "card",
                                "attributes": [
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.list.networks.column.id.heading",
                                        "template": "{{node.id}}",
                                        "link_template": "#/networks/{{node.id}}",
                                        "condition": "{{and node.id}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.list.networks.column.ref.heading",
                                        "template": "{{node.ref}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.list.networks.column.type.heading",
                                        "template": "{{node.type}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.list.networks.column.status.heading",
                                        "template": "{{node.status}}"
                                    }
                                ]
                            }
                        },
                        {
                            "component": "fc.list",
                            "props": {
                                "title": "i18n:fc.stores.allLocations.detail.list.storageArea.title",
                                "dataSource": "locationById.storageAreas",
                                "responsiveness": "card",
                                "attributes": [
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.list.storageArea.column.name.heading",
                                        "template": "{{node.name}}",
                                        "link_template": "#/storageArea/{{node.id}}",
                                        "condition": "{{and node.id}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.list.storageArea.column.storageAreaId.heading",
                                        "template": "{{node.id}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.list.storageArea.column.status.heading",
                                        "template": "{{node.status}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.allLocations.detail.list.storageArea.column.type.heading",
                                        "template": "{{node.type}}"
                                    }
                                ]
                            }
                        }
                    ]
                },
                {
                    "path": "locations/STORE",
                    "type": "page",
                    "component": "fc.page",
                    "nav": {
                        "label": "i18n:fc.stores.nav",
                        "icon": "store"
                    },
                    "data": {
                        "query": "query ($locations_first: Int) {\n  locations(type: [\"STORE\"], first: $locations_first) {\n    edges {\n      node {\n        id\n        ref\n        type\n        status\n        name\n        primaryAddress {\n          id\n          city\n          state\n          country\n        }\n      }\n    }\n  }\n}\n",
                        "variables": {
                            "locations_first": 100
                        }
                    },
                    "props": {
                        "title": "i18n:fc.stores.stores.index.title"
                    },
                    "descendants": [
                        {
                            "component": "fc.list",
                            "props": {
                                "dataSource": "locations",
                                "responsiveness": "card",
                                "filter": {
                                    "enabled": true,
                                    "exclude": [
                                        "status",
                                        "name",
                                        "defaultCarrier",
                                        "defaultCarrierName",
                                        "supportPhoneNumber"
                                    ]
                                },
                                "attributes": [
                                    {
                                        "label": "i18n:fc.stores.stores.index.list.column.ref.heading",
                                        "template": "{{node.ref}}",
                                        "link_template": "#/locations/{{node.id}}/{{node.ref}}/{{node.primaryAddress.id}}",
                                        "condition": "{{and node.id node.ref node.primaryAddress.id}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.stores.index.list.column.name.heading",
                                        "template": "{{node.name}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.stores.index.list.column.city.heading",
                                        "template": "{{node.primaryAddress.city}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.stores.index.list.column.state.heading",
                                        "template": "{{node.primaryAddress.state}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.stores.index.list.column.country.heading",
                                        "template": "{{node.primaryAddress.country}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.stores.index.list.column.status.heading",
                                        "template": "{{humanify node.status}}"
                                    }
                                ]
                            }
                        }
                    ]
                },
                {
                    "path": "locations/:id/:ref/:addressId",
                    "type": "page",
                    "data": {
                        "query": "query ($id: ID!, $locationRef: [String], $locationRefForWave: String!, $controlRef: [String!], $networks_first: Int, $storageAreas_first: Int, $waves_first: Int, $inventoryPositions_first: Int, $virtualPositions_first: Int, $controls_first: Int) {\n  locationById(id: $id) {\n    id\n    ref\n    name\n    type\n    status\n    supportPhoneNumber\n    createdOn\n    updatedOn\n    defaultCarrier\n    openingSchedule {\n      allHours\n      monEnd\n      monStart\n      tueEnd\n      tueStart\n      wedEnd\n      wedStart\n      thuEnd\n      thuStart\n      friEnd\n      friStart\n      satEnd\n      satStart\n      sunEnd\n      sunStart\n    }\n    primaryAddress {\n      companyName\n      id\n      street\n      city\n      state\n      postcode\n      country\n      longitude\n      latitude\n      timeZone\n    }\n    ...networks\n    ...storageAreas\n    attributes {\n      name\n      type\n      value\n    }\n  }\n  ...inventoryPositions\n  ...virtualPositions\n  ...controls\n  ...Waves\n}\n\nfragment networks on Location {\n  networks(first: $networks_first) {\n    edges {\n      node {\n        id\n        ref\n        status\n        type\n      }\n    }\n  }\n}\n\nfragment storageAreas on Location {\n  storageAreas(first: $storageAreas_first) {\n    edges {\n      node {\n        id\n        name\n        status\n        type\n      }\n    }\n  }\n}\n\nfragment Waves on Query {\n  waves(processingLocation: {ref: $locationRefForWave}, first: $waves_first) {\n    edges {\n      node {\n        id\n        ref\n        name\n        status\n        type\n        retailer {\n          id\n        }\n        location {\n          id\n          ref\n          name\n        }\n        fulfilments {\n          edges {\n            node {\n              id\n              ref\n              order {\n                id\n                ref\n                retailer {\n                  id\n                }\n              }\n            }\n          }\n        }\n        createdOn\n        updatedOn\n        processingLocation {\n          ref\n        }\n      }\n    }\n  }\n}\n\nfragment inventoryPositions on Query {\n  inventoryPositions(locationRef: $locationRef, first: $inventoryPositions_first) {\n    edges {\n      node {\n        ref\n        type\n        status\n        onHand\n        productRef\n        catalogue {\n          ref\n        }\n      }\n    }\n  }\n}\n\nfragment controls on Query {\n  controls(ref: $controlRef, first: $controls_first) {\n    edges {\n      node {\n        id\n        ref\n        type\n        name\n        status\n        executionOrder\n        values {\n          value\n        }\n        controlGroup {\n          ref\n        }\n      }\n    }\n  }\n}\n\nfragment virtualPositions on Query {\n  virtualPositions(groupRef: $locationRef, first: $virtualPositions_first) {\n    edges {\n      node {\n        status\n        quantity\n        ref\n        type\n        productRef\n        catalogue {\n          ref\n        }\n      }\n    }\n  }\n}\n",
                        "variables": {
                            "id": "{{params.id}}",
                            "locationRef": "{{params.ref}}",
                            "locationRefForWave": "{{params.ref}}",
                            "controlRef": "%{{params.ref}}%",
                            "networks_first": 100,
                            "storageAreas_first": 100,
                            "waves_first": 100,
                            "inventoryPositions_first": 100,
                            "virtualPositions_first": 100,
                            "controls_first": 100
                        }
                    },
                    "component": "fc.page",
                    "props": {
                        "title": "{{i18n 'fc.stores.location.title'}} - {{locationById.ref}}",
                        "actions": true,
                        "backButtons": [
                            {
                                "path": "locations/{{locationById.type}}",
                                "menuLabel": "{{i18n 'fc.stores.location.backTo'}} {{humanify (toLowerCase locationById.type)}}s"
                            }
                        ]
                    },
                    "descendants": [
                        {
                            "component": "fc.tabs",
                            "props": {
                                "layouts": [
                                    {
                                        "label": "i18n:fc.stores.stores.detail.tab.details.label"
                                    },
                                    {
                                        "label": "i18n:fc.stores.stores.detail.tab.attributes.label"
                                    },
                                    {
                                        "label": "i18n:fc.stores.stores.detail.tab.schedule.label"
                                    },
                                    {
                                        "label": "i18n:fc.stores.stores.detail.tab.waves.label"
                                    },
                                    {
                                        "label": "i18n:fc.stores.stores.detail.tab.positions.label"
                                    }
                                ]
                            },
                            "descendants": [
                                {
                                    "component": "fc.page.section",
                                    "descendants": [
                                        {
                                            "component": "fc.card.attribute",
                                            "props": {
                                                "title": "i18n:fc.stores.stores.detail.card.summary.title",
                                                "width": "half",
                                                "dataSource": "locationById",
                                                "attributes": [
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.summary.attribute.id.label",
                                                        "template": "{{id}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.summary.attribute.ref.label",
                                                        "template": "{{ref}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.summary.attribute.name.label",
                                                        "template": "{{name}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.summary.attribute.phone.label",
                                                        "template": "{{supportPhoneNumber}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.summary.defcarrier.type.label",
                                                        "template": "{{defaultCarrier}}",
                                                        "link_template": "#/carriers/{{defaultCarrier}}",
                                                        "condition": "{{and defaultCarrier}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.summary.attribute.type.label",
                                                        "template": "{{type}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.summary.attribute.status.label",
                                                        "template": "{{status}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.summary.attribute.creationDate.label",
                                                        "template": "{{dateStringFormatter createdOn}} ({{dateRelative createdOn}})"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.summary.attribute.updatedDate.label",
                                                        "template": "{{dateStringFormatter updatedOn}} ({{dateRelative updatedOn}})"
                                                    }
                                                ]
                                            }
                                        },
                                        {
                                            "component": "fc.card.attribute",
                                            "props": {
                                                "title": "i18n:fc.stores.stores.detail.card.address.title",
                                                "width": "half",
                                                "dataSource": "locationById",
                                                "attributes": [
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.address.attribute.companyName.label",
                                                        "template": "{{primaryAddress.companyName}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.address.attribute.address.label",
                                                        "template": "{{primaryAddress.street}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.address.attribute.latitude.label",
                                                        "template": "{{primaryAddress.latitude}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.address.attribute.longitude.label",
                                                        "template": "{{primaryAddress.longitude}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.address.attribute.timezone.label",
                                                        "template": "{{primaryAddress.timeZone}}"
                                                    }
                                                ]
                                            }
                                        },
                                        {
                                            "component": "fc.list",
                                            "props": {
                                                "title": "i18n:fc.stores.stores.detail.tab.networks.label",
                                                "dataSource": "locationById.networks",
                                                "responsiveness": "card",
                                                "attributes": [
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.networks.column.id.heading",
                                                        "template": "{{node.id}}",
                                                        "link_template": "#/networks/{{node.id}}",
                                                        "condition": "{{and node.id}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.networks.column.ref.heading",
                                                        "template": "{{node.ref}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.networks.column.type.heading",
                                                        "template": "{{node.type}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.networks.column.networkStatus.heading",
                                                        "template": "{{node.status}}"
                                                    }
                                                ]
                                            }
                                        },
                                        {
                                            "component": "fc.list",
                                            "props": {
                                                "title": "i18n:fc.stores.stores.detail.list.storageArea.title",
                                                "dataSource": "locationById.storageAreas",
                                                "responsiveness": "card",
                                                "attributes": [
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.storageArea.column.name.heading",
                                                        "template": "{{node.name}}",
                                                        "link_template": "#/storageArea/{{node.id}}",
                                                        "condition": "{{and node.id}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.storageArea.column.storageAreaId.heading",
                                                        "template": "{{node.id}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.storageArea.column.status.heading",
                                                        "template": "{{node.status}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.storageArea.column.type.heading",
                                                        "template": "{{node.type}}"
                                                    }
                                                ]
                                            }
                                        }
                                    ]
                                },
                                {
                                    "component": "fc.page.section",
                                    "descendants": [
                                        {
                                            "component": "fc.list",
                                            "props": {
                                                "title": "i18n:fc.stores.stores.detail.list.attributes.title",
                                                "dataSource": "locationById.attributes",
                                                "responsiveness": "card",
                                                "attributes": [
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.attributes.column.name.heading",
                                                        "template": "{{name}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.attributes.column.type.heading",
                                                        "template": "{{type}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.attributes.column.value.heading",
                                                        "type": "component",
                                                        "options": {
                                                            "component": "fc.page.section",
                                                            "descendants": [
                                                                {
                                                                    "component": "fc.conditional",
                                                                    "props": {
                                                                        "value": "{{type}}",
                                                                        "matches": "JSON"
                                                                    },
                                                                    "descendants": [
                                                                        {
                                                                            "component": "fc.attribute.json",
                                                                            "dataSource": "value"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "component": "fc.conditional",
                                                                    "props": {
                                                                        "value": "{{eq type 'JSON'}}",
                                                                        "matches": "false"
                                                                    },
                                                                    "descendants": [
                                                                        {
                                                                            "component": "fc.mystique.collapsible.text",
                                                                            "props": {
                                                                                "text": "{{value}}",
                                                                                "charCutoff": 100
                                                                            }
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ]
                                },
                                {
                                    "component": "fc.page.section",
                                    "descendants": [
                                        {
                                            "component": "fc.card.attribute",
                                            "props": {
                                                "title": "i18n:fc.stores.stores.detail.card.openingSchedule.title",
                                                "width": "half",
                                                "dataSource": "locationById",
                                                "attributes": [
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.openingSchedule.attribute.open24Hours?.label",
                                                        "template": "{{openingSchedule.allHours}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.openingSchedule.attribute.monday.label",
                                                        "template": "{{openingSchedule.monStart}}  {{i18n 'fc.stores.allLocations.detail.card.openingHours.to'}} {{openingSchedule.monEnd}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.openingSchedule.attribute.tuesday.label",
                                                        "template": "{{openingSchedule.tueStart}}  {{i18n 'fc.stores.allLocations.detail.card.openingHours.to'}} {{openingSchedule.tueEnd}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.openingSchedule.attribute.wednesday.label",
                                                        "template": "{{openingSchedule.wedStart}}  {{i18n 'fc.stores.allLocations.detail.card.openingHours.to'}} {{openingSchedule.wedEnd}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.openingSchedule.attribute.thursday.label",
                                                        "template": "{{openingSchedule.thuStart}}  {{i18n 'fc.stores.allLocations.detail.card.openingHours.to'}} {{openingSchedule.thuEnd}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.openingSchedule.attribute.friday.label",
                                                        "template": "{{openingSchedule.friStart}}  {{i18n 'fc.stores.allLocations.detail.card.openingHours.to'}} {{openingSchedule.friEnd}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.openingSchedule.attribute.saturday.label",
                                                        "template": "{{openingSchedule.satStart}}  {{i18n 'fc.stores.allLocations.detail.card.openingHours.to'}} {{openingSchedule.satEnd}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.card.openingSchedule.attribute.sunday.label",
                                                        "template": "{{openingSchedule.sunStart}}  {{i18n 'fc.stores.allLocations.detail.card.openingHours.to'}} {{openingSchedule.sunEnd}}"
                                                    }
                                                ]
                                            }
                                        }
                                    ]
                                },
                                {
                                    "component": "fc.page.section",
                                    "descendants": [
                                        {
                                            "component": "fc.list",
                                            "props": {
                                                "title": "i18n:fc.stores.stores.detail.tab.waves.label",
                                                "dataSource": "waves",
                                                "responsiveness": "card",
                                                "attributes": [
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.waves.column.id.heading",
                                                        "template": "{{node.id}}",
                                                        "link_template": "#/wave/{{node.id}}",
                                                        "condition": "{{and node.id}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.waves.column.status.heading",
                                                        "template": "{{node.status}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.waves.column.fulfilmentIDs.heading",
                                                        "template": "{{#node.fulfilments.edges}}{{node.id}}\n{{/node.fulfilments.edges}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.waves.column.creationDate.heading",
                                                        "template": "{{dateStringFormatter node.createdOn}} ({{dateRelative node.createdOn}})"
                                                    }
                                                ]
                                            }
                                        }
                                    ]
                                },
                                {
                                    "component": "fc.page.section",
                                    "descendants": [
                                        {
                                            "component": "fc.list",
                                            "props": {
                                                "title": "i18n:fc.stores.stores.detail.list.inventoryPositions.title",
                                                "dataSource": "inventoryPositions",
                                                "responsiveness": "card",
                                                "attributes": [
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.positions.column.ref.heading",
                                                        "template": "{{node.ref}}",
                                                        "link_template": "#/inventoryPosition/{{node.catalogue.ref}}/{{node.ref}}",
                                                        "condition": "{{and node.catalogue.ref node.ref}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.positions.column.inventoryCatalogue.heading",
                                                        "template": "{{node.catalogue.ref}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.positions.column.productRef.heading",
                                                        "template": "{{node.productRef}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.positions.column.status.heading",
                                                        "template": "{{node.status}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.positions.column.onHand.heading",
                                                        "template": "{{node.onHand}}"
                                                    }
                                                ]
                                            }
                                        },
                                        {
                                            "component": "fc.list",
                                            "props": {
                                                "title": "i18n:fc.stores.stores.detail.list.controls.title",
                                                "dataSource": "controls",
                                                "responsiveness": "card",
                                                "attributes": [
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.controls.column.ref.heading",
                                                        "template": "{{node.ref}}",
                                                        "link_template": "#/control/{{node.controlGroup.ref}}/{{node.ref}}",
                                                        "condition": "{{and node.controlGroup.ref node.ref}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.controls.column.controlGroup.heading",
                                                        "template": "{{node.controlGroup.ref}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.controls.column.type.heading",
                                                        "template": "{{node.type}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.controls.column.status.heading",
                                                        "template": "{{node.status}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.controls.column.controlValue.heading",
                                                        "template": "{{node.values.0.value}}"
                                                    }
                                                ]
                                            }
                                        },
                                        {
                                            "component": "fc.list",
                                            "props": {
                                                "title": "i18n:fc.stores.stores.detail.list.virtualPositions.title",
                                                "dataSource": "virtualPositions",
                                                "responsiveness": "card",
                                                "attributes": [
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.virtualPositions.column.ref.heading",
                                                        "template": "{{node.ref}}",
                                                        "link_template": "#/virtualPosition/{{node.catalogue.ref}}/{{node.ref}}",
                                                        "condition": "{{and node.catalogue.ref node.ref}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.virtualPositions.column.virtualCatalogue.heading",
                                                        "template": "{{node.catalogue.ref}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.virtualPositions.column.productRef.heading",
                                                        "template": "{{node.productRef}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.virtualPositions.column.status.heading",
                                                        "template": "{{node.status}}"
                                                    },
                                                    {
                                                        "label": "i18n:fc.stores.stores.detail.list.virtualPositions.column.quantity.heading",
                                                        "template": "{{node.quantity}}"
                                                    }
                                                ]
                                            }
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "path": "storageArea/:id",
                    "type": "page",
                    "component": "fc.page",
                    "data": {
                        "query": "query ($id: ID!, $articles_first: Int) {\n  storageAreaById(id: $id) {\n    id\n    createdOn\n    name\n    status\n    type\n    location {\n      id\n      ref\n      primaryAddress {\n        id\n      }\n    }\n    ...article\n  }\n}\n\nfragment article on StorageArea {\n  articles(first: $articles_first) {\n    edges {\n      node {\n        id\n        ref\n        status\n        createdOn\n      }\n    }\n  }\n}\n",
                        "variables": {
                            "id": "{{params.id}}",
                            "articles_first": 100
                        }
                    },
                    "props": {
                        "title": "{{i18n 'fc.stores.storageArea.title'}} - {{storageAreaById.name}} {{i18n 'fc.stores.storageArea.title.at'}} {{storageAreaById.location.ref}}",
                        "backButtons": [
                            {
                                "path": "locations/{{storageAreaById.location.id}}/{{storageAreaById.location.ref}}/{{storageAreaById.location.primaryAddress.id}}",
                                "menuLabel": "{{i18n 'fc.stores.storageArea.backToLocation'}} {{storageAreaById.location.ref}}"
                            }
                        ]
                    },
                    "descendants": [
                        {
                            "component": "fc.card.attribute",
                            "props": {
                                "title": "i18n:fc.stores.stores.detail.tab.details.label",
                                "width": "half",
                                "dataSource": "storageAreaById",
                                "attributes": [
                                    {
                                        "label": "i18n:fc.stores.stores.detail.card.storageArea.attribute.id.label",
                                        "template": "{{id}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.stores.detail.card.storageArea.attribute.name.label",
                                        "template": "{{name}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.stores.detail.card.storageArea.attribute.status.label",
                                        "template": "{{status}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.stores.detail.card.storageArea.attribute.type.label",
                                        "template": "{{type}}{{#unless type}}{{i18n 'fc.stores.stores.detail.card.storageArea.attribute.type.notSet'}}{{/unless}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.stores.detail.card.storageArea.attribute.creationDate.label",
                                        "template": "{{dateStringFormatter createdOn}} ({{dateRelative createdOn}})"
                                    }
                                ]
                            }
                        },
                        {
                            "component": "fc.list",
                            "props": {
                                "title": "i18n:fc.stores.stores.detail.list.storageArea.articles.title",
                                "dataSource": "storageAreaById.articles",
                                "responsiveness": "card",
                                "attributes": [
                                    {
                                        "label": "i18n:fc.stores.stores.detail.list.article.column.articleRef.heading",
                                        "template": "{{node.ref}}",
                                        "link_template": "#/article/{{node.id}}",
                                        "condition": "{{and node.id}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.stores.detail.list.article.column.status.heading",
                                        "template": "{{node.status}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.stores.detail.list.article.column.creationDate.heading",
                                        "template": "{{dateStringFormatter node.createdOn}} ({{dateRelative node.createdOn}})"
                                    }
                                ]
                            }
                        }
                    ]
                },
                {
                    "path": "locations/WAREHOUSE",
                    "type": "page",
                    "component": "fc.page",
                    "nav": {
                        "label": "i18n:fc.warehouse.nav",
                        "icon": "location_city"
                    },
                    "data": {
                        "query": "query ($locations_first: Int) {\n  locations(type: [\"WAREHOUSE\"], first: $locations_first) {\n    edges {\n      node {\n        id\n        ref\n        type\n        status\n        name\n        primaryAddress {\n          id\n          city\n          state\n          country\n        }\n      }\n    }\n  }\n}\n",
                        "variables": {
                            "locations_first": 100
                        }
                    },
                    "props": {
                        "title": "i18n:fc.stores.warehouse.index.title",
                        "actions": true
                    },
                    "descendants": [
                        {
                            "component": "fc.list",
                            "props": {
                                "dataSource": "locations",
                                "responsiveness": "card",
                                "filter": {
                                    "enabled": true,
                                    "exclude": [
                                        "status",
                                        "name",
                                        "defaultCarrier",
                                        "defaultCarrierName",
                                        "supportPhoneNumber",
                                        "type"
                                    ]
                                },
                                "attributes": [
                                    {
                                        "label": "i18n:fc.stores.warehouse.index.list.column.ref.heading",
                                        "template": "{{node.ref}}",
                                        "link_template": "#/locations/{{node.id}}/{{node.ref}}/{{node.primaryAddress.id}}",
                                        "condition": "{{and node.id node.ref node.primaryAddress.id}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.warehouse.index.list.column.name.heading",
                                        "template": "{{node.name}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.warehouse.index.list.column.city.heading",
                                        "template": "{{node.primaryAddress.city}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.warehouse.index.list.column.state.heading",
                                        "template": "{{node.primaryAddress.state}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.warehouse.index.list.column.country.heading",
                                        "template": "{{node.primaryAddress.country}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.warehouse.index.list.column.status.heading",
                                        "template": "{{humanify node.status}}"
                                    }
                                ]
                            }
                        }
                    ]
                },
                {
                    "path": "networks",
                    "type": "page",
                    "component": "fc.page",
                    "nav": {
                        "label": "i18n:fc.stores.networks.index.nav",
                        "icon": "group_work"
                    },
                    "data": {
                        "query": "query ($networks_first: Int) {\n  networks(first: $networks_first) {\n    edges {\n      node {\n        ...Listing\n      }\n    }\n  }\n}\n\nfragment Listing on Network {\n  id\n  ref\n  type\n  status\n}\n",
                        "variables": {
                            "networks_first": 100
                        }
                    },
                    "props": {
                        "title": "i18n:fc.stores.networks.index.title"
                    },
                    "descendants": [
                        {
                            "component": "fc.list",
                            "props": {
                                "dataSource": "networks",
                                "responsiveness": "card",
                                "filter": {
                                    "enabled": true,
                                    "exclude": [
                                        "status",
                                        "type"
                                    ]
                                },
                                "attributes": [
                                    {
                                        "label": "i18n:fc.stores.networks.index.list.column.ref.heading",
                                        "template": "{{node.ref}}",
                                        "link_template": "#/networks/{{node.id}}",
                                        "condition": "{{and node.id}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.networks.index.list.column.id.heading",
                                        "template": "{{node.id}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.networks.index.list.column.type.heading",
                                        "template": "{{node.type}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.networks.index.list.column.status.heading",
                                        "template": "{{node.status}}"
                                    }
                                ]
                            }
                        }
                    ]
                },
                {
                    "path": "networks/:id",
                    "component": "fc.page",
                    "type": "page",
                    "data": {
                        "query": "query ($id: ID!, $locations_first: Int, $retailers_first: Int) {\n  networkById(id: $id) {\n    id\n    createdOn\n    type\n    status\n    ref\n    attributes {\n      name\n      type\n      value\n    }\n    ...retailers\n    ...locations\n  }\n}\n\nfragment locations on Network {\n  locations(first: $locations_first) {\n    edges {\n      node {\n        id\n        name\n        ref\n        type\n        status\n        retailer {\n          id\n          ref\n        }\n        primaryAddress {\n          id\n          city\n          state\n          country\n        }\n      }\n    }\n  }\n}\n\nfragment retailers on Network {\n  retailers(first: $retailers_first) {\n    edges {\n      node {\n        ref\n        id\n        status\n      }\n    }\n  }\n}\n",
                        "variables": {
                            "id": "{{params.id}}",
                            "locations_first": 100,
                            "retailers_first": 100
                        }
                    },
                    "props": {
                        "title": "{{i18n 'fc.stores.networks.title'}} - {{networkById.ref}}",
                        "backButtons": [
                            {
                                "path": "networks",
                                "menuLabel": "i18n:fc.stores.networks.detail.breadcrumb.backToNetworks"
                            }
                        ]
                    },
                    "descendants": [
                        {
                            "component": "fc.card.attribute",
                            "props": {
                                "title": "i18n:fc.stores.networks.detail.card.details.title",
                                "width": "half",
                                "dataSource": "networkById",
                                "attributes": [
                                    {
                                        "label": "i18n:fc.stores.networks.detail.card.details.attribute.id.label",
                                        "template": "{{id}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.networks.detail.card.details.attribute.ref.label",
                                        "template": "{{ref}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.networks.detail.card.details.attribute.type.label",
                                        "template": "{{type}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.networks.detail.card.details.attribute.status.label",
                                        "template": "{{status}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.networks.detail.card.details.attribute.creationDate.label",
                                        "template": "{{dateStringFormatter createdOn}} ({{dateRelative createdOn}})"
                                    }
                                ]
                            }
                        },
                        {
                            "component": "fc.list",
                            "props": {
                                "title": "i18n:fc.stores.networks.detail.list.locations.title",
                                "dataSource": "networkById.locations",
                                "responsiveness": "card",
                                "attributes": [
                                    {
                                        "label": "i18n:fc.stores.networks.detail.list.locations.column.ref.heading",
                                        "template": "{{node.ref}}",
                                        "link_template": "#/locations/{{node.id}}/{{node.ref}}/{{node.primaryAddress.id}}",
                                        "condition": "{{and node.id node.ref node.primaryAddress.id}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.networks.detail.list.locations.column.name.heading",
                                        "template": "{{node.name}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.networks.detail.list.locations.column.city.heading",
                                        "template": "{{node.primaryAddress.city}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.networks.detail.list.locations.column.state.heading",
                                        "template": "{{node.primaryAddress.state}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.networks.detail.list.locations.column.country.heading",
                                        "template": "{{node.primaryAddress.country}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.networks.detail.list.locations.column.type.heading",
                                        "template": "{{humanify node.type}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.networks.detail.list.locations.column.status.heading",
                                        "template": "{{humanify node.status}}"
                                    }
                                ]
                            }
                        },
                        {
                            "component": "fc.list",
                            "props": {
                                "title": "i18n:fc.stores.networks.detail.list.retailers.title",
                                "dataSource": "networkById.retailers",
                                "responsiveness": "card",
                                "attributes": [
                                    {
                                        "label": "i18n:fc.stores.networks.detail.list.retailers.column.retailerRef.heading",
                                        "template": "{{node.ref}}",
                                        "link_template": "#/retailers/{{node.id}}",
                                        "condition": "{{and node.id}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.networks.detail.list.retailers.column.retailerId.heading",
                                        "template": "{{node.id}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.networks.detail.list.retailers.column.retailerStatus.heading",
                                        "template": "{{node.status}}"
                                    }
                                ]
                            }
                        },
                        {
                            "component": "fc.list",
                            "props": {
                                "title": "i18n:fc.stores.networks.detail.list.attributes.title",
                                "dataSource": "networkById.attributes",
                                "responsiveness": "card",
                                "attributes": [
                                    {
                                        "label": "i18n:fc.stores.networks.detail.list.attributes.column.name.heading",
                                        "template": "{{name}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.networks.detail.list.attributes.column.type.heading",
                                        "template": "{{type}}"
                                    },
                                    {
                                        "label": "i18n:fc.stores.networks.detail.list.attributes.column.value.heading",
                                        "type": "component",
                                        "options": {
                                            "component": "fc.page.section",
                                            "descendants": [
                                                {
                                                    "component": "fc.conditional",
                                                    "props": {
                                                        "value": "{{type}}",
                                                        "matches": "JSON"
                                                    },
                                                    "descendants": [
                                                        {
                                                            "component": "fc.attribute.json",
                                                            "dataSource": "value"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "component": "fc.conditional",
                                                    "props": {
                                                        "value": "{{eq type 'JSON'}}",
                                                        "matches": "false"
                                                    },
                                                    "descendants": [
                                                        {
                                                            "component": "fc.mystique.collapsible.text",
                                                            "props": {
                                                                "text": "{{value}}",
                                                                "charCutoff": 100
                                                            }
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                ]
                            }
                        }
                    ]
                }
            ]
        }
    ]
}