{
  "info": {
    "name": "Location Finder Unified API",
    "description": null,
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "item": [
    {
      "name": "v1",
      "item": [
        {
          "name": "find-by-geo",
          "item": [
            {
              "name": "countryCode (NL)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=51.78840417146323&longitude=6.129881517493761&radius=15000&limit=50&countryCode=NL",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=51.78840417146323&longitude=6.129881517493761&radius=15000&limit=50&countryCode=NL"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "51.78840417146323",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.129881517493761",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "key": "countryCode",
                      "value": "NL"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "",
                      "// Check for response body",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"No records from Germany (DE)\", function () { ",
                      "    pm.expect(jsonData.locations.find(loc => loc.place.address.countryCode === \"DE\")).is.undefined",
                      "});",
                      "",
                      "pm.test(\"Have records from Netherlands (NL)\", function () { ",
                      "    pm.expect(jsonData.locations.find(loc => loc.place.address.countryCode === \"NL\")).is.not.undefined",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "countryCode (not specified)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=51.78840417146323&longitude=6.129881517493761&radius=15000&limit=50",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=51.78840417146323&longitude=6.129881517493761&radius=15000&limit=50"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "51.78840417146323",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.129881517493761",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for response body",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Have records from Germany Kleve (DE)\", function () { ",
                      "    pm.expect(jsonData.locations.find(loc => loc.place.address.countryCode === \"DE\")).is.not.undefined",
                      "});",
                      "",
                      "pm.test(\"Have records from Netherlands (NL)\", function () { ",
                      "    pm.expect(jsonData.locations.find(loc => loc.place.address.countryCode === \"NL\")).is.not.undefined",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "default",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=50&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=50&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "50"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for response body",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(50);",
                      "});",
                      "",
                      "pm.test(\"Verify url\", function () { ",
                      "    pm.expect(jsonData.locations[0].url).to.equal(\"/locations/8007-466111102\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify locationId\", function () { ",
                      "    pm.expect(jsonData.locations[0].location.ids[0].locationId).to.equal(\"8007-466111102\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify provider\", function () { ",
                      "    pm.expect(jsonData.locations[0].location.ids[0].provider).to.equal(\"parcel\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify keyword\", function () { ",
                      "    pm.expect(jsonData.locations[0].location.keyword).to.equal(\"Packstation\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify keywordId\", function () { ",
                      "    pm.expect(jsonData.locations[0].location.keywordId).to.equal(\"102\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify type\", function () { ",
                      "    pm.expect(jsonData.locations[0].location.type).to.equal(\"locker\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify name\", function () { ",
                      "    pm.expect(jsonData.locations[0].name).to.equal(\"Packstation 102\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify distance\", function () { ",
                      "    pm.expect(jsonData.locations[0].distance).to.equal(160); ",
                      "});",
                      "",
                      "pm.test(\"Verify countryCode\", function () { ",
                      "    pm.expect(jsonData.locations[0].place.address.countryCode).to.equal(\"DE\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify postalCode\", function () { ",
                      "    pm.expect(jsonData.locations[0].place.address.postalCode).to.equal(\"66111\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify addressLocality\", function () { ",
                      "    pm.expect(jsonData.locations[0].place.address.addressLocality).to.equal(\"Saarbrücken\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify streetAddress\", function () { ",
                      "    pm.expect(jsonData.locations[0].place.address.streetAddress).to.equal(\"Ursulinenstr. 71\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify latitude\", function () { ",
                      "    pm.expect(jsonData.locations[0].place.geo.latitude).to.equal(49.240942); ",
                      "});",
                      "",
                      "pm.test(\"Verify longitude\", function () { ",
                      "    pm.expect(jsonData.locations[0].place.geo.longitude).to.equal(6.998781); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Monday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[0].opens).to.equal(\"00:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Monday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[0].closes).to.equal(\"23:59:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Monday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[0].dayOfWeek).to.equal(\"http://schema.org/Monday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Tuesday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[1].opens).to.equal(\"00:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Tuesday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[1].closes).to.equal(\"23:59:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Tuesday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[1].dayOfWeek).to.equal(\"http://schema.org/Tuesday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Wednesday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[2].opens).to.equal(\"00:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Wednesday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[2].closes).to.equal(\"23:59:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Wednesday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[2].dayOfWeek).to.equal(\"http://schema.org/Wednesday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Thursday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[3].opens).to.equal(\"00:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Thursday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[3].closes).to.equal(\"23:59:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Thursday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[3].dayOfWeek).to.equal(\"http://schema.org/Thursday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Friday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[4].opens).to.equal(\"00:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Friday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[4].closes).to.equal(\"23:59:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Friday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[4].dayOfWeek).to.equal(\"http://schema.org/Friday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Saturday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[5].opens).to.equal(\"00:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Saturday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[5].closes).to.equal(\"23:59:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Saturday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[5].dayOfWeek).to.equal(\"http://schema.org/Saturday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Sunday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[6].opens).to.equal(\"00:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Sunday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[6].closes).to.equal(\"23:59:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Sunday\", function () { ",
                      "    pm.expect(jsonData.locations[0].openingHours[6].dayOfWeek).to.equal(\"http://schema.org/Sunday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closurePeriods\", function () { ",
                      "    pm.expect(jsonData.locations[0].closurePeriods.length).to.eql(0);",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.locations[0].serviceTypes).to.include(\"parcel:drop-off-unregistered\");",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.locations[0].serviceTypes).to.include(\"parcel:pick-up-registered\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "invalid geo latitude",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=149.24015720000001&longitude=6.996932700000002&radius=15000&limit=20",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=149.24015720000001&longitude=6.996932700000002&radius=15000&limit=20"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "149.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 400",
                      "pm.test(\"Status code is 400\", function () {",
                      "    pm.expect(pm.response.code).to.equal(400);",
                      "});",
                      "",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify json status\", function () {",
                      "    pm.expect(jsonData.status).to.equal(400); ",
                      "});",
                      "",
                      "pm.test(\"Verify json title\", function () {",
                      "    pm.expect(jsonData.title).to.equal(\"Invalid Latitude\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify json detail\", function () {",
                      "    pm.expect(jsonData.detail).to.equal(\"Latitude should be a number between -90 and 90.\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "invalid geo longitude",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=216.996932700000002&radius=15000&limit=20",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=216.996932700000002&radius=15000&limit=20"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "216.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 400",
                      "pm.test(\"Status code is 400\", function () {",
                      "    pm.expect(pm.response.code).to.equal(400);",
                      "});",
                      "",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify json status\", function () {",
                      "    pm.expect(jsonData.status).to.equal(400); ",
                      "});",
                      "",
                      "pm.test(\"Verify json title\", function () {",
                      "    pm.expect(jsonData.title).to.equal(\"Invalid Longitude\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify json detail\", function () {",
                      "    pm.expect(jsonData.detail).to.equal(\"Longitude should be a number between -180 and 180.\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "invalid locationType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&locationType=BARBAZ",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&locationType=BARBAZ"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "locationType",
                      "value": "BARBAZ"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(400);",
                      "});",
                      "",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify json status\", function () {",
                      "    pm.expect(jsonData.status).to.equal(400); ",
                      "});",
                      "",
                      "pm.test(\"Verify json title\", function () {",
                      "    pm.expect(jsonData.title).to.equal(\"Unknown Location Type\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify json detail\", function () {",
                      "    pm.expect(jsonData.detail).to.equal(\"Provided locationType is not known.\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "locationType (locker)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=15&locationType=locker&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=15&locationType=locker&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "15"
                    },
                    {
                      "key": "locationType",
                      "value": "locker"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct locationType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Location Type locker available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].location.type).to.include(\"locker\");",
                      "    }",
                      "});",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(15);",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "invalid serviceType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=FOOBAR",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=FOOBAR"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "serviceType",
                      "value": "FOOBAR"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(400);",
                      "});",
                      "",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify json status\", function () {",
                      "    pm.expect(jsonData.status).to.equal(400); ",
                      "});",
                      "",
                      "pm.test(\"Verify json title\", function () {",
                      "    pm.expect(jsonData.title).to.equal(\"Unknown Service Type\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify json detail\", function () {",
                      "    pm.expect(jsonData.detail).to.equal(\"Provided serviceType is not known.\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "locationType (pobox)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=50.6869763&longitude=7.15629916&radius=15000&limit=20&locationType=pobox&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=50.6869763&longitude=7.15629916&radius=15000&limit=20&locationType=pobox&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "50.6869763",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "7.15629916",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "locationType",
                      "value": "pobox"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct locationType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Location Type pobox available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].location.type).to.include(\"pobox\");",
                      "    }",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "locationType (postbank)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=3&locationType=postbank&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=3&locationType=postbank&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "3"
                    },
                    {
                      "key": "locationType",
                      "value": "postbank"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct locationType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Location Type postbank available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].location.type).to.include(\"postbank\");",
                      "    }",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "locationType (postoffice)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&locationType=postoffice&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&locationType=postoffice&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "locationType",
                      "value": "postoffice"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct locationType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Location Type postoffice available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].location.type).to.include(\"postoffice\");",
                      "    }",
                      "});",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(20);",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "locationType (servicepoint)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&locationType=servicepoint&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&locationType=servicepoint&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "locationType",
                      "value": "servicepoint"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct locationType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Location type servicepoint available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].location.type).to.include(\"servicepoint\");",
                      "    }",
                      "});",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(20);",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "providerType (parcel and express)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=52.081641&longitude=4.304165&radius=1000&limit=1&currentDate=01-02-2020&providerType=parcel&providerType=express",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=52.081641&longitude=4.304165&radius=1000&limit=1&currentDate=01-02-2020&providerType=parcel&providerType=express"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "52.081641",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "4.304165",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "1000"
                    },
                    {
                      "key": "limit",
                      "value": "1"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    },
                    {
                      "key": "providerType",
                      "value": "parcel"
                    },
                    {
                      "key": "providerType",
                      "value": "express"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for response body",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "",
                      "pm.test(\"Verify url\", function () { ",
                      "    pm.expect(jsonData.locations[0].url).to.equal(\"/locations/8004-NL-251401\"); ",
                      "});",
                      "",
                      "",
                      "pm.test(\"Verify parcel and express locationIds\", function () {",
                      "    var parcelProvider = {",
                      "        \"locationId\" : \"8004-NL-251401\",",
                      "        \"provider\"  :   \"parcel\"",
                      "    }",
                      "    var expressProvider = {",
                      "        \"locationId\" : \"AMS175\",",
                      "        \"provider\"  :   \"express\"",
                      "    }",
                      "    pm.expect(jsonData.locations[0].location.ids).to.have.deep.members([expressProvider, parcelProvider]);",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "providerType (unknown provider dgf)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=52.4076904&longitude=13.2375145&radius=1000&limit=1&currentDate=01-02-2020&providerType=parcel&providerType=express&providerType=dgf",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=52.4076904&longitude=13.2375145&radius=1000&limit=1&currentDate=01-02-2020&providerType=parcel&providerType=express&providerType=dgf"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "52.4076904",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "13.2375145",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "1000"
                    },
                    {
                      "key": "limit",
                      "value": "1"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    },
                    {
                      "key": "providerType",
                      "value": "parcel"
                    },
                    {
                      "key": "providerType",
                      "value": "express"
                    },
                    {
                      "key": "providerType",
                      "value": "dgf"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(400);",
                      "});",
                      "",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify json status\", function () {",
                      "    pm.expect(jsonData.status).to.equal(400); ",
                      "});",
                      "",
                      "pm.test(\"Verify json title\", function () {",
                      "    pm.expect(jsonData.title).to.equal(\"Unknown Provider\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify json detail\", function () {",
                      "    pm.expect(jsonData.detail).to.equal(\"Provided provider is not known.\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (age-verification)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=age-verification&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=age-verification&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "serviceType",
                      "value": "age-verification"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type age-verification available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"age-verification\");",
                      "    }",
                      "});",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(20);",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (cash-on-delivery)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=cash-on-delivery&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=cash-on-delivery&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "serviceType",
                      "value": "cash-on-delivery"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type cash-on-delivery available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"cash-on-delivery\");",
                      "    }",
                      "});",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(20);",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (cash-service)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=45.895049&longitude=15.66007&radius=15000&limit=10&serviceType=cash-service&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=45.895049&longitude=15.66007&radius=15000&limit=10&serviceType=cash-service&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "45.895049",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "15.66007",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "10"
                    },
                    {
                      "key": "serviceType",
                      "value": "cash-service"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type cash-service available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"cash-service\");",
                      "    }",
                      "});",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(10);",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (express:drop-off)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=40.414381&longitude=-3.702893&radius=15000&limit=20&serviceType=express:drop-off&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=40.414381&longitude=-3.702893&radius=15000&limit=20&serviceType=express:drop-off&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "40.414381",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "-3.702893",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "serviceType",
                      "value": "express:drop-off"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type express:drop-off available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"express:drop-off\");",
                      "    }",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (express:pick-up)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=40.414381&longitude=-3.702893&radius=15000&limit=20&serviceType=express:pick-up&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=40.414381&longitude=-3.702893&radius=15000&limit=20&serviceType=express:pick-up&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "40.414381",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "-3.702893",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "serviceType",
                      "value": "express:pick-up"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type express:pick-up available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"express:pick-up\");",
                      "    }",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (franking)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=45.895049&longitude=15.66007&radius=15000&limit=3&serviceType=franking&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=45.895049&longitude=15.66007&radius=15000&limit=3&serviceType=franking&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "45.895049",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "15.66007",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "3"
                    },
                    {
                      "key": "serviceType",
                      "value": "franking"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type franking available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"franking\");",
                      "    }",
                      "});",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(3);",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (handicapped-access)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=handicapped-access&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=handicapped-access&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "serviceType",
                      "value": "handicapped-access"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type handicapped-access available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"handicapped-access\");",
                      "    }",
                      "});",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(20);",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (letter-service)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=letter-service&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=letter-service&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "serviceType",
                      "value": "letter-service"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type letter-service available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"letter-service\");",
                      "    }",
                      "});",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(20);",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (packaging-material)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=10&serviceType=packaging-material&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=10&serviceType=packaging-material&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "10"
                    },
                    {
                      "key": "serviceType",
                      "value": "packaging-material"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type packaging-material available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"packaging-material\");",
                      "    }",
                      "});",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(10);",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (parcel:drop-off)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=parcel:drop-off&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=parcel:drop-off&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "serviceType",
                      "value": "parcel:drop-off"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type parcel:drop-off available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"parcel:drop-off\");",
                      "    }",
                      "});",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(20);",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (parcel:drop-off-unlabeled)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=52.617401&longitude=13.306607&radius=15000&limit=20&serviceType=parcel:drop-off-unlabeled&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=52.617401&longitude=13.306607&radius=15000&limit=20&serviceType=parcel:drop-off-unlabeled&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "52.617401",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "13.306607",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "serviceType",
                      "value": "parcel:drop-off-unlabeled"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type parcel:drop-off-unlabeled available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"parcel:drop-off-unlabeled\");",
                      "    }",
                      "});",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(20);",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (parcel:drop-off-unregistered)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=15&serviceType=parcel:drop-off-unregistered&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=15&serviceType=parcel:drop-off-unregistered&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "15"
                    },
                    {
                      "key": "serviceType",
                      "value": "parcel:drop-off-unregistered"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type parcel:drop-off-unregistered available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"parcel:drop-off-unregistered\");",
                      "    }",
                      "});",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(15);",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (parcel:pick-up)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=parcel:pick-up&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=parcel:pick-up&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "serviceType",
                      "value": "parcel:pick-up"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type parcel:pick-up available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"parcel:pick-up\");",
                      "    }",
                      "});",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(20);",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (parcel:pick-up-registered)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=15&serviceType=parcel:pick-up-registered&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=15&serviceType=parcel:pick-up-registered&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "15"
                    },
                    {
                      "key": "serviceType",
                      "value": "parcel:pick-up-registered"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type parcel:pick-up-registered available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"parcel:pick-up-registered\");",
                      "    }",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (parcel:pick-up-unregistered)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=52.3027625&longitude=4.947633&radius=15000&limit=5&serviceType=parcel:pick-up-unregistered&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=52.3027625&longitude=4.947633&radius=15000&limit=5&serviceType=parcel:pick-up-unregistered&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "52.3027625",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "4.947633",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "5"
                    },
                    {
                      "key": "serviceType",
                      "value": "parcel:pick-up-unregistered"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type parcel:pick-up-unregistered available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"parcel:pick-up-unregistered\");",
                      "    }",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (parking)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=parking&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=parking&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "serviceType",
                      "value": "parking"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type parking available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"parking\");",
                      "    }",
                      "});",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(20);",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (postbank)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=3&serviceType=postbank&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=3&serviceType=postbank&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "3"
                    },
                    {
                      "key": "serviceType",
                      "value": "postbank"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type postbank available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"postbank\");",
                      "    }",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "serviceType (postident)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=postident&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=20&serviceType=postident&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "serviceType",
                      "value": "postident"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct serviceType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Service Type postident available\", function () {",
                      "    for (var i = 0; i < jsonData.locations.length; i++) {",
                      "        pm.expect(jsonData.locations[i].serviceTypes).to.include(\"postident\");",
                      "    }",
                      "});",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(20);",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "verify locker capacity dayOfWeek array",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=15&locationType=locker&currentDate=01-02-2020",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-geo?latitude=49.24015720000001&longitude=6.996932700000002&radius=15000&limit=15&locationType=locker&currentDate=01-02-2020"
                  ],
                  "query": [
                    {
                      "key": "latitude",
                      "value": "49.24015720000001",
                      "description": "50.7169763"
                    },
                    {
                      "key": "longitude",
                      "value": "6.996932700000002",
                      "description": "7.1329916"
                    },
                    {
                      "key": "radius",
                      "value": "15000"
                    },
                    {
                      "key": "limit",
                      "value": "15"
                    },
                    {
                      "key": "locationType",
                      "value": "locker"
                    },
                    {
                      "key": "currentDate",
                      "value": "01-02-2020"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct capacity data",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Capacity data to be correct\", function () {",
                      "    var n = 1; ",
                      "    var dayNames = [\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\",\"Sunday\"];",
                      "    for (var i = 0; i < jsonData.locations[n].averageCapacityDayOfWeek.length; i++) {",
                      "        pm.expect(jsonData.locations[n].averageCapacityDayOfWeek[i].dayOfWeek).to.eql(dayNames[i]);",
                      "        pm.expect(jsonData.locations[n].averageCapacityDayOfWeek[i].capacity).to.be.oneOf([\"very-low\",\"low\",\"high\",\"unknown\"]);",
                      "    }",
                      "});",
                      "",
                      "// Check for number of items",
                      "pm.test(\"Verify number of items\", function () { ",
                      "    pm.expect(jsonData.locations.length).to.eql(15);",
                      "});"
                    ]
                  }
                }
              ]
            }
          ]
        },
        {
          "name": "find-by-keyword-id",
          "item": [
            {
              "name": "Doesnt find - when countrycode doesnt match",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "Accept-Encoding",
                    "value": "gzip, deflate, br",
                    "disabled": false,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-keyword-id?keywordId=101&countryCode=NL&postalCode=45500",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-keyword-id?keywordId=101&countryCode=NL&postalCode=45500"
                  ],
                  "query": [
                    {
                      "key": "keywordId",
                      "value": "101"
                    },
                    {
                      "key": "countryCode",
                      "value": "NL"
                    },
                    {
                      "key": "postalCode",
                      "value": "45500"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "pm.test(\"Status code is 404\", function () {",
                      "    pm.expect(pm.response.code).to.equal(404);",
                      "});",
                      "",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify json status\", function () {",
                      "    pm.expect(jsonData.status).to.equal(404); ",
                      "});",
                      "pm.test(\"Verify json title\", function () {",
                      "    pm.expect(jsonData.title).to.equal(\"Location not found\"); ",
                      "});",
                      "pm.test(\"Verify json detail\", function () {",
                      "    pm.expect(jsonData.detail).to.equal(\"Location with provided ID could not be found.\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "Doesnt find - when keywordid doesnt match",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "Accept-Encoding",
                    "value": "gzip, deflate, br",
                    "disabled": false,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-keyword-id?keywordId=102&countryCode=ES&postalCode=45500",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-keyword-id?keywordId=102&countryCode=ES&postalCode=45500"
                  ],
                  "query": [
                    {
                      "key": "keywordId",
                      "value": "102"
                    },
                    {
                      "key": "countryCode",
                      "value": "ES"
                    },
                    {
                      "key": "postalCode",
                      "value": "45500"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "pm.test(\"Status code is 404\", function () {",
                      "    pm.expect(pm.response.code).to.equal(404);",
                      "});",
                      "",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify json status\", function () {",
                      "    pm.expect(jsonData.status).to.equal(404); ",
                      "});",
                      "pm.test(\"Verify json title\", function () {",
                      "    pm.expect(jsonData.title).to.equal(\"Location not found\"); ",
                      "});",
                      "pm.test(\"Verify json detail\", function () {",
                      "    pm.expect(jsonData.detail).to.equal(\"Location with provided ID could not be found.\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "Doesnt find - when postalcode doesnt match",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "Accept-Encoding",
                    "value": "gzip, deflate, br",
                    "disabled": false,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-keyword-id?keywordId=101&countryCode=ES&postalCode=45501",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-keyword-id?keywordId=101&countryCode=ES&postalCode=45501"
                  ],
                  "query": [
                    {
                      "key": "keywordId",
                      "value": "101"
                    },
                    {
                      "key": "countryCode",
                      "value": "ES"
                    },
                    {
                      "key": "postalCode",
                      "value": "45501"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "pm.test(\"Status code is 404\", function () {",
                      "    pm.expect(pm.response.code).to.equal(404);",
                      "});",
                      "",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify json status\", function () {",
                      "    pm.expect(jsonData.status).to.equal(404); ",
                      "});",
                      "pm.test(\"Verify json title\", function () {",
                      "    pm.expect(jsonData.title).to.equal(\"Location not found\"); ",
                      "});",
                      "pm.test(\"Verify json detail\", function () {",
                      "    pm.expect(jsonData.detail).to.equal(\"Location with provided ID could not be found.\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "Find - even when postalcode has custom format",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "Accept-Encoding",
                    "value": "gzip, deflate, br",
                    "disabled": false,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-keyword-id?keywordId=103&countryCode=ES&postalCode=4-60 05",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-keyword-id?keywordId=103&countryCode=ES&postalCode=4-60 05"
                  ],
                  "query": [
                    {
                      "key": "keywordId",
                      "value": "103"
                    },
                    {
                      "key": "countryCode",
                      "value": "ES"
                    },
                    {
                      "key": "postalCode",
                      "value": "4-60 05"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for response body",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify url\", function () { ",
                      "    pm.expect(jsonData.url).to.equal(\"/locations/8055-ES-0005609\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "Find - when keywordid, countrycode, postalcode matches",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "Accept-Encoding",
                    "value": "gzip, deflate, br",
                    "disabled": false,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-keyword-id?keywordId=103&countryCode=ES&postalCode=46005",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-keyword-id?keywordId=103&countryCode=ES&postalCode=46005"
                  ],
                  "query": [
                    {
                      "key": "keywordId",
                      "value": "103"
                    },
                    {
                      "key": "countryCode",
                      "value": "ES"
                    },
                    {
                      "key": "postalCode",
                      "value": "46005"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for response body",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify url\", function () { ",
                      "    pm.expect(jsonData.url).to.equal(\"/locations/8055-ES-0005609\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "Requires - countrycode to be provided",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "Accept-Encoding",
                    "value": "gzip, deflate, br",
                    "disabled": false,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-keyword-id?keywordId=101&postalCode=45500",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-keyword-id?keywordId=101&postalCode=45500"
                  ],
                  "query": [
                    {
                      "key": "keywordId",
                      "value": "101"
                    },
                    {
                      "key": "postalCode",
                      "value": "45500"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "pm.test(\"Status code is 400\", function () {",
                      "    pm.expect(pm.response.code).to.equal(400);",
                      "});",
                      "",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify json status\", function () {",
                      "    pm.expect(jsonData.status).to.equal(400); ",
                      "});",
                      "",
                      "pm.test(\"Verify json title\", function () {",
                      "    pm.expect(jsonData.title).to.equal(\"Bad Request\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify json detail\", function () {",
                      "    pm.expect(jsonData.detail).to.equal(\"Missing parameter: countryCode\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "Requires - keywordid to be provided",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "Accept-Encoding",
                    "value": "gzip, deflate, br",
                    "disabled": false,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-keyword-id?countryCode=ES&postalCode=45500",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-keyword-id?countryCode=ES&postalCode=45500"
                  ],
                  "query": [
                    {
                      "key": "countryCode",
                      "value": "ES"
                    },
                    {
                      "key": "postalCode",
                      "value": "45500"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "pm.test(\"Status code is 400\", function () {",
                      "    pm.expect(pm.response.code).to.equal(400);",
                      "});",
                      "",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify json status\", function () {",
                      "    pm.expect(jsonData.status).to.equal(400); ",
                      "});",
                      "",
                      "pm.test(\"Verify json title\", function () {",
                      "    pm.expect(jsonData.title).to.equal(\"Bad Request\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify json detail\", function () {",
                      "    pm.expect(jsonData.detail).to.equal(\"Missing parameter: keywordId\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "Requires - postalcode to be provided",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "Accept-Encoding",
                    "value": "gzip, deflate, br",
                    "disabled": false,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-keyword-id?keywordId=101&countryCode=ES",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-keyword-id?keywordId=101&countryCode=ES"
                  ],
                  "query": [
                    {
                      "key": "keywordId",
                      "value": "101"
                    },
                    {
                      "key": "countryCode",
                      "value": "ES"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "pm.test(\"Status code is 400\", function () {",
                      "    pm.expect(pm.response.code).to.equal(400);",
                      "});",
                      "",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify json status\", function () {",
                      "    pm.expect(jsonData.status).to.equal(400); ",
                      "});",
                      "",
                      "pm.test(\"Verify json title\", function () {",
                      "    pm.expect(jsonData.title).to.equal(\"Bad Request\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify json detail\", function () {",
                      "    pm.expect(jsonData.detail).to.equal(\"Missing parameter: postalCode\"); ",
                      "});"
                    ]
                  }
                }
              ]
            }
          ]
        },
        {
          "name": "find-by-address",
          "item": [
            {
              "name": "Test call 1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "demo-key",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-address?countryCode=ES&addressLocality=Madrid&postalCode=28002&streetAddress=Calle del Ave Maria",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-address?countryCode=ES&addressLocality=Madrid&postalCode=28002&streetAddress=Calle del Ave Maria"
                  ],
                  "query": [
                    {
                      "key": "countryCode",
                      "value": "ES"
                    },
                    {
                      "key": "addressLocality",
                      "value": "Madrid"
                    },
                    {
                      "key": "postalCode",
                      "value": "28002"
                    },
                    {
                      "key": "streetAddress",
                      "value": "Calle del Ave Maria"
                    },
                    {
                      "key": "streetaddress",
                      "value": "Bongasse 10"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "locationType",
                      "value": "servicepoint"
                    },
                    {
                      "key": "locationType",
                      "value": "servicepoint"
                    },
                    {
                      "key": "locationType",
                      "value": "postbank"
                    },
                    {
                      "key": "providerType",
                      "value": "parcel"
                    },
                    {
                      "key": "addressLocality",
                      "value": "seia"
                    },
                    {
                      "key": "streetAddress",
                      "value": "Heinrich-Brüning-Str. 5"
                    },
                    {
                      "key": "postalCode",
                      "value": "28880"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(400);",
                      "});",
                      "",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify json status\", function () {",
                      "    pm.expect(jsonData.status).to.equal(400); ",
                      "});",
                      "",
                      "pm.test(\"Verify json title\", function () {",
                      "    pm.expect(jsonData.title).to.equal(\"Unknown Country\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify json detail\", function () {",
                      "    pm.expect(jsonData.detail).to.equal(\"Provided country is not known.\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "Test call 2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-address?streetaddress=Hammarhagen 146&providerType=parcel&countryCode=SE&postalCode=73394&addressLocality=Sala&serviceType=parcel:pick-up&radius=25000",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-address?streetaddress=Hammarhagen 146&providerType=parcel&countryCode=SE&postalCode=73394&addressLocality=Sala&serviceType=parcel:pick-up&radius=25000"
                  ],
                  "query": [
                    {
                      "key": "streetaddress",
                      "value": "Hammarhagen 146"
                    },
                    {
                      "key": "providerType",
                      "value": "parcel"
                    },
                    {
                      "key": "countryCode",
                      "value": "SE"
                    },
                    {
                      "key": "postalCode",
                      "value": "73394"
                    },
                    {
                      "key": "addressLocality",
                      "value": "Sala"
                    },
                    {
                      "key": "serviceType",
                      "value": "parcel:pick-up"
                    },
                    {
                      "key": "radius",
                      "value": "25000"
                    },
                    {
                      "key": "serviceType",
                      "value": "parcel:pick-up-unregistered"
                    },
                    {
                      "key": "locationType",
                      "value": "locker"
                    },
                    {
                      "key": "limit",
                      "value": "20"
                    },
                    {
                      "key": "locationType",
                      "value": "servicepoint"
                    },
                    {
                      "key": "locationType",
                      "value": "postoffice"
                    },
                    {
                      "key": "locationType",
                      "value": "postbank"
                    },
                    {
                      "key": "hideClosedLocations",
                      "value": "true"
                    },
                    {
                      "key": "currentDate",
                      "value": "24-01-2023"
                    },
                    {
                      "key": "serviceType",
                      "value": "franking"
                    },
                    {
                      "key": "streetAddress",
                      "value": "calle del ave maria"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(400);",
                      "});",
                      "",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify json status\", function () {",
                      "    pm.expect(jsonData.status).to.equal(400); ",
                      "});",
                      "",
                      "pm.test(\"Verify json title\", function () {",
                      "    pm.expect(jsonData.title).to.equal(\"Unknown Country\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify json detail\", function () {",
                      "    pm.expect(jsonData.detail).to.equal(\"Provided country is not known.\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "Test call 3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/find-by-address?countryCode=DE&addressLocality=Bonn&postalCode=53113&serviceType=parcel:pick-up&locationType=servicepoint&locationType=postoffice&locationType=postbank",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "find-by-address?countryCode=DE&addressLocality=Bonn&postalCode=53113&serviceType=parcel:pick-up&locationType=servicepoint&locationType=postoffice&locationType=postbank"
                  ],
                  "query": [
                    {
                      "key": "countryCode",
                      "value": "DE"
                    },
                    {
                      "key": "addressLocality",
                      "value": "Bonn"
                    },
                    {
                      "key": "postalCode",
                      "value": "53113"
                    },
                    {
                      "key": "serviceType",
                      "value": "parcel:pick-up"
                    },
                    {
                      "key": "locationType",
                      "value": "servicepoint"
                    },
                    {
                      "key": "locationType",
                      "value": "postoffice"
                    },
                    {
                      "key": "locationType",
                      "value": "postbank"
                    },
                    {
                      "key": "serviceType",
                      "value": "parcel:pick-up-unregistered"
                    },
                    {
                      "key": "providerType",
                      "value": "parcel"
                    },
                    {
                      "key": "addressLocality",
                      "value": "Säve"
                    },
                    {
                      "key": "postalCode",
                      "value": "42731"
                    },
                    {
                      "key": "streetAddress",
                      "value": "undefined"
                    },
                    {
                      "key": "limit",
                      "value": "10"
                    },
                    {
                      "key": "radius",
                      "value": "30000"
                    },
                    {
                      "key": "streetAddress",
                      "value": "al. 3 Maja 1a"
                    },
                    {
                      "key": "radius",
                      "value": "2000"
                    },
                    {
                      "key": "serviceType",
                      "value": "parcel:drop-off-return"
                    },
                    {
                      "key": "serviceType",
                      "value": "parcel:drop-off-return-unlabeled"
                    }
                  ],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(400);",
                      "});",
                      "",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify json status\", function () {",
                      "    pm.expect(jsonData.status).to.equal(400); ",
                      "});",
                      "",
                      "pm.test(\"Verify json title\", function () {",
                      "    pm.expect(jsonData.title).to.equal(\"Unknown Country\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify json detail\", function () {",
                      "    pm.expect(jsonData.detail).to.equal(\"Provided country is not known.\"); ",
                      "});"
                    ]
                  }
                }
              ]
            }
          ]
        },
        {
          "name": "find-by-id",
          "item": [
            {
              "name": "containedInPlace (locker)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "",
                    "value": "gzip",
                    "disabled": true,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/locations/8007-453113145",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "locations",
                    "8007-453113145"
                  ],
                  "query": [],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for correct locationType",
                      "var jsonData = pm.response.json(); ",
                      "pm.test(\"Location Type locker available\", function () {",
                      "    pm.expect(jsonData.location.type).to.include(\"locker\"); ",
                      "});",
                      "",
                      "pm.test(\"Location Type locker available\", function () {",
                      "    pm.expect(jsonData.place.containedInPlace.name).to.eql(\"neben Postfiliale\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "GET /locations/{express-id}",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "Accept-Encoding",
                    "value": "gzip, deflate, br",
                    "disabled": false,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/locations/AMS175",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "locations",
                    "AMS175"
                  ],
                  "query": [],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for response body",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify url\", function () { ",
                      "    pm.expect(jsonData.url).to.equal(\"/locations/8004-NL-251401\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify parcel and express locationIds\", function () {",
                      "    var parcelProvider = {",
                      "        \"locationId\" : \"8004-NL-251401\",",
                      "        \"provider\"  :   \"parcel\"",
                      "    }",
                      "    var expressProvider = {",
                      "        \"locationId\" : \"AMS175\",",
                      "        \"provider\"  :   \"express\"",
                      "    }",
                      "    pm.expect(jsonData.location.ids).to.have.deep.members([expressProvider, parcelProvider]);",
                      "});",
                      "",
                      "pm.test(\"Verify keyword\", function () { ",
                      "    pm.expect(jsonData.location.keyword).to.equal(\"DHL Parcelshop\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify keywordId\", function () { ",
                      "    pm.expect(jsonData.location.keywordId).to.equal(\"NL-251401\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify type\", function () { ",
                      "    pm.expect(jsonData.location.type).to.equal(\"servicepoint\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify name\", function () { ",
                      "    pm.expect(jsonData.name).to.equal(\"DHL Shipping Spot Den Haag\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify countryCode\", function () { ",
                      "    pm.expect(jsonData.place.address.countryCode).to.equal(\"NL\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify postalCode\", function () { ",
                      "    pm.expect(jsonData.place.address.postalCode).to.equal(\"2514GM\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify addressLocality\", function () { ",
                      "    pm.expect(jsonData.place.address.addressLocality).to.be.oneOf([\"S GRAVENHAGE\", \"Den Haag\"]); ",
                      "});",
                      "",
                      "pm.test(\"Verify streetAddress\", function () { ",
                      "    pm.expect(jsonData.place.address.streetAddress).to.equal(\"Noordeinde 94\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify latitude\", function () { ",
                      "    pm.expect(jsonData.place.geo.latitude).to.equal(52.081641); ",
                      "});",
                      "",
                      "pm.test(\"Verify longitude\", function () { ",
                      "    pm.expect(jsonData.place.geo.longitude).to.equal(4.304165); ",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.serviceTypes).to.include(\"parcel:drop-off\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.serviceTypes).to.include(\"parcel:pick-up\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.serviceTypes).to.include(\"parking\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.serviceTypes).to.include(\"handicapped-access\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.serviceTypes).to.include(\"express:drop-off\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.serviceTypes).to.include(\"express:drop-off-prelabeled\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.serviceTypes).to.include(\"express:drop-off-easy\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.serviceTypes).to.include(\"express:pick-up\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "GET /locations/{parcel-id}",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "demo-key",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "Accept-Encoding",
                    "value": "gzip, deflate, br",
                    "disabled": false,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/locations/SHA460",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "locations",
                    "SHA460"
                  ],
                  "query": [],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for response body",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify url\", function () { ",
                      "    pm.expect(jsonData.url).to.equal(\"/locations/8003-4008202\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify parcel and express locationIds\", function () {",
                      "    var parcelProvider = {",
                      "        \"locationId\" : \"8003-4008202\",",
                      "        \"provider\"  :   \"parcel\"",
                      "    }",
                      "    pm.expect(jsonData.location.ids).to.deep.include(parcelProvider);",
                      "});",
                      "",
                      "pm.test(\"Verify keyword\", function () { ",
                      "    pm.expect(jsonData.location.keyword).to.equal(\"Postfiliale\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify keywordId\", function () { ",
                      "    pm.expect(jsonData.location.keywordId).to.equal(\"502\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify type\", function () { ",
                      "    pm.expect(jsonData.location.type).to.equal(\"postoffice\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify name\", function () { ",
                      "    pm.expect(jsonData.name).to.equal(\"Postfiliale 502\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify countryCode\", function () { ",
                      "    pm.expect(jsonData.place.address.countryCode).to.equal(\"DE\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify postalCode\", function () { ",
                      "    pm.expect(jsonData.place.address.postalCode).to.equal(\"53113\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify addressLocality\", function () { ",
                      "    pm.expect(jsonData.place.address.addressLocality).to.equal(\"Bonn\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify streetAddress\", function () { ",
                      "    pm.expect(jsonData.place.address.streetAddress).to.equal(\"Charles-de-Gaulle-Str. 20\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify latitude\", function () { ",
                      "    pm.expect(jsonData.place.geo.latitude).to.equal(50.71601); ",
                      "});",
                      "",
                      "pm.test(\"Verify longitude\", function () { ",
                      "    pm.expect(jsonData.place.geo.longitude).to.equal(7.129804); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Monday\", function () { ",
                      "    pm.expect(jsonData.openingHours[0].opens).to.equal(\"08:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Monday\", function () { ",
                      "    pm.expect(jsonData.openingHours[0].closes).to.equal(\"17:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Monday\", function () { ",
                      "    pm.expect(jsonData.openingHours[0].dayOfWeek).to.equal(\"http://schema.org/Monday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Tuesday\", function () { ",
                      "    pm.expect(jsonData.openingHours[1].opens).to.equal(\"08:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Tuesday\", function () { ",
                      "    pm.expect(jsonData.openingHours[1].closes).to.equal(\"17:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Tuesday\", function () { ",
                      "    pm.expect(jsonData.openingHours[1].dayOfWeek).to.equal(\"http://schema.org/Tuesday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Wednesday\", function () { ",
                      "    pm.expect(jsonData.openingHours[2].opens).to.equal(\"08:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Wednesday\", function () { ",
                      "    pm.expect(jsonData.openingHours[2].closes).to.equal(\"17:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Wednesday\", function () { ",
                      "    pm.expect(jsonData.openingHours[2].dayOfWeek).to.equal(\"http://schema.org/Wednesday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Thursday\", function () { ",
                      "    pm.expect(jsonData.openingHours[3].opens).to.equal(\"08:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Thursday\", function () { ",
                      "    pm.expect(jsonData.openingHours[3].closes).to.equal(\"17:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Thursday\", function () { ",
                      "    pm.expect(jsonData.openingHours[3].dayOfWeek).to.equal(\"http://schema.org/Thursday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Friday\", function () { ",
                      "    pm.expect(jsonData.openingHours[4].opens).to.equal(\"08:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Friday\", function () { ",
                      "    pm.expect(jsonData.openingHours[4].closes).to.equal(\"17:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Friday\", function () { ",
                      "    pm.expect(jsonData.openingHours[4].dayOfWeek).to.equal(\"http://schema.org/Friday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Saturday\", function () { ",
                      "    pm.expect(jsonData.openingHours[5].opens).to.equal(\"10:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Saturday\", function () { ",
                      "    pm.expect(jsonData.openingHours[5].closes).to.equal(\"12:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Saturday\", function () { ",
                      "    pm.expect(jsonData.openingHours[5].dayOfWeek).to.equal(\"http://schema.org/Saturday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closurePeriods\", function () { ",
                      "    pm.expect(jsonData.closurePeriods.length).to.eql(0);",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.serviceTypes).to.include(\"age-verification\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.serviceTypes).to.include(\"cash-on-delivery\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.serviceTypes).to.include(\"letter-service\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.serviceTypes).to.include(\"parcel:drop-off\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.serviceTypes).to.include(\"parcel:pick-up\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.serviceTypes).to.include(\"parking\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.serviceTypes).to.include(\"postident\"); ",
                      "});"
                    ]
                  }
                }
              ]
            },
            {
              "name": "GET /locations/{pobox-id}",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "DHL-API-Key",
                    "value": "{{key}}",
                    "disabled": false,
                    "type": "default"
                  },
                  {
                    "key": "Accept-Encoding",
                    "value": "gzip, deflate, br",
                    "disabled": false,
                    "type": "default"
                  }
                ],
                "auth": {
                  "type": "noauth"
                },
                "description": "",
                "url": {
                  "raw": "{{host}}/location-finder/v1/locations/01FEB0D11E43C43DE040400A12027386",
                  "protocol": "",
                  "host": [
                    "{{host}}"
                  ],
                  "path": [
                    "location-finder",
                    "v1",
                    "locations",
                    "01FEB0D11E43C43DE040400A12027386"
                  ],
                  "query": [],
                  "variable": []
                }
              },
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {},
                    "exec": [
                      "// Check for HTTP status code 200",
                      "pm.test(\"Status code is 200\", function () {",
                      "    pm.expect(pm.response.code).to.equal(200);",
                      "});",
                      "",
                      "// Check for HTTP status code ok",
                      "pm.test(\"Status code is ok\", function () {",
                      "    pm.expect(pm.response.code).to.equal(\"OK\");",
                      "});",
                      "",
                      "// Check for existing Content-Type",
                      "pm.test(\"Content-Type is present\", function () {",
                      "  \tpm.expect(pm.response.headers).to.have.property(\"Content-Type\".toLowerCase());",
                      "});",
                      "",
                      "// Check for response body",
                      "var jsonData = pm.response.json(); ",
                      "",
                      "pm.test(\"Verify url\", function () { ",
                      "    pm.expect(jsonData.url).to.equal(\"/locations/01FEB0D11E43C43DE040400A12027386\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify parcel and express locationIds\", function () {",
                      "    var parcelProvider = {",
                      "        \"locationId\" : \"01FEB0D11E43C43DE040400A12027386\",",
                      "        \"provider\"  :   \"parcel\"",
                      "    }",
                      "    pm.expect(jsonData.location.ids).to.deep.include(parcelProvider);",
                      "});",
                      "",
                      "pm.test(\"Verify keyword\", function () { ",
                      "    pm.expect(jsonData.location.keyword).to.equal(\"\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify keywordId\", function () { ",
                      "    pm.expect(jsonData.location.keywordId).to.equal(\"\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify type\", function () { ",
                      "    pm.expect(jsonData.location.type).to.equal(\"pobox\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify name\", function () { ",
                      "    pm.expect(jsonData.name).to.equal(\"\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify countryCode\", function () { ",
                      "    pm.expect(jsonData.place.address.countryCode).to.equal(\"DE\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify postalCode\", function () { ",
                      "    pm.expect(jsonData.place.address.postalCode).to.equal(\"30989\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify addressLocality\", function () { ",
                      "    pm.expect(jsonData.place.address.addressLocality).to.equal(\"Gehrden\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify streetAddress\", function () { ",
                      "    pm.expect(jsonData.place.address.streetAddress).to.equal(\"Nordstr. 2\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify latitude\", function () { ",
                      "    pm.expect(jsonData.place.geo.latitude).to.equal(52.31637364333741); ",
                      "});",
                      "",
                      "pm.test(\"Verify longitude\", function () { ",
                      "    pm.expect(jsonData.place.geo.longitude).to.equal(9.5990064045773); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Monday\", function () { ",
                      "    pm.expect(jsonData.openingHours[0].opens).to.equal(\"07:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Monday\", function () { ",
                      "    pm.expect(jsonData.openingHours[0].closes).to.equal(\"22:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Monday\", function () { ",
                      "    pm.expect(jsonData.openingHours[0].dayOfWeek).to.equal(\"http://schema.org/Monday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Tuesday\", function () { ",
                      "    pm.expect(jsonData.openingHours[1].opens).to.equal(\"07:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Tuesday\", function () { ",
                      "    pm.expect(jsonData.openingHours[1].closes).to.equal(\"22:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Tuesday\", function () { ",
                      "    pm.expect(jsonData.openingHours[1].dayOfWeek).to.equal(\"http://schema.org/Tuesday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Wednesday\", function () { ",
                      "    pm.expect(jsonData.openingHours[2].opens).to.equal(\"07:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Wednesday\", function () { ",
                      "    pm.expect(jsonData.openingHours[2].closes).to.equal(\"22:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Wednesday\", function () { ",
                      "    pm.expect(jsonData.openingHours[2].dayOfWeek).to.equal(\"http://schema.org/Wednesday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Thursday\", function () { ",
                      "    pm.expect(jsonData.openingHours[3].opens).to.equal(\"07:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Thursday\", function () { ",
                      "    pm.expect(jsonData.openingHours[3].closes).to.equal(\"22:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Thursday\", function () { ",
                      "    pm.expect(jsonData.openingHours[3].dayOfWeek).to.equal(\"http://schema.org/Thursday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Friday\", function () { ",
                      "    pm.expect(jsonData.openingHours[4].opens).to.equal(\"07:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Friday\", function () { ",
                      "    pm.expect(jsonData.openingHours[4].closes).to.equal(\"22:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Friday\", function () { ",
                      "    pm.expect(jsonData.openingHours[4].dayOfWeek).to.equal(\"http://schema.org/Friday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify opens - Saturday\", function () { ",
                      "    pm.expect(jsonData.openingHours[5].opens).to.equal(\"07:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closes - Saturday\", function () { ",
                      "    pm.expect(jsonData.openingHours[5].closes).to.equal(\"22:00:00\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify dayOfWeek - Saturday\", function () { ",
                      "    pm.expect(jsonData.openingHours[5].dayOfWeek).to.equal(\"http://schema.org/Saturday\"); ",
                      "});",
                      "",
                      "pm.test(\"Verify closurePeriods\", function () { ",
                      "    pm.expect(jsonData.closurePeriods.length).to.eql(0);",
                      "});",
                      "",
                      "pm.test(\"Verify serviceTypes\", function () { ",
                      "    pm.expect(jsonData.serviceTypes.length).to.eql(0);",
                      "});"
                    ]
                  }
                }
              ]
            }
          ]
        }
      ]
    }
  ],
  "variable": [
    {
      "key": "host",
      "value": "",
      "type": "default"
    },
    {
      "key": "key",
      "value": "",
      "type": "default"
    }
  ]
}